From 95736f681f0efb3c66b9f239a3709288b772af78 Mon Sep 17 00:00:00 2001 From: pangyating <1343567939@qq.com> Date: Thu, 6 Aug 2020 22:39:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ex.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 ex.java diff --git a/ex.java b/ex.java deleted file mode 100644 index e85763a..0000000 --- a/ex.java +++ /dev/null @@ -1,18 +0,0 @@ -package calculator; -import java.util.Scanner; -import java.lang.Math; -public class ex { - - public ex(){ - - Scanner input= new Scanner(System.in); - - System.out.print("请输入数字x:"); - int x=input.nextInt(); - double e=Math.E; - double n=Math.pow(e, x); - - - System.out.printf("结果为%.9f\n",n); - } -}