刚学java
现在刚学完流程控制了
现在看代码吧,
//任务目标:建立一个可以进行基本计算的计算器程序
int A;
int B;
double C; System.out.println("请输入第一个数值");
Scanner input=new Scanner(System.in);
A=input.nextByte();//input.nextByte()为数字 System.out.println("请输入第二个数值"); B=input.nextByte();
//System.out.println("请选择计算类型:(+;-;*;/)");
//String fuhao=input.next();
//while 因非本机器忘记代码故为编写暂停。
C=A*B;
System.out.println("乘法计算其结果为"+C);
就是这样,我想用while循环判断用户选择的是什么计算类型然后又如何才能实现呢?
现在刚学完流程控制了
现在看代码吧,
//任务目标:建立一个可以进行基本计算的计算器程序
int A;
int B;
double C; System.out.println("请输入第一个数值");
Scanner input=new Scanner(System.in);
A=input.nextByte();//input.nextByte()为数字 System.out.println("请输入第二个数值"); B=input.nextByte();
//System.out.println("请选择计算类型:(+;-;*;/)");
//String fuhao=input.next();
//while 因非本机器忘记代码故为编写暂停。
C=A*B;
System.out.println("乘法计算其结果为"+C);
就是这样,我想用while循环判断用户选择的是什么计算类型然后又如何才能实现呢?