编写一个java程序,用户从键盘输入任意个整数,程序输出这些整数的乘积。
2个回答
展开全部
public class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("输入整数:");
int temp1=sc.nextInt(),temp2;
while(true){
temp2=sc.nextInt();
temp1=temp1*temp2;
System.out.println("乘积:"+temp1);
}
}
}
结果:
输入整数:
2
3
乘积:6
4
乘积:24
6
乘积:144
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("输入整数:");
int temp1=sc.nextInt(),temp2;
while(true){
temp2=sc.nextInt();
temp1=temp1*temp2;
System.out.println("乘积:"+temp1);
}
}
}
结果:
输入整数:
2
3
乘积:6
4
乘积:24
6
乘积:144
更多追问追答
追问
你这只能输两个数字
追答
任意数字啊。。。,第一次输入两个得到积,然后每次输入都会继续相乘得积。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private static Scanner san;
public static void main(String[] args) {
san =new Scanner(System.in);
System.out.print("请输入A: ");
String A = san .nextLine().trim();
System.out.print("请输入B: ");
String B = san .nextLine().trim();
System.out.println("A*B="+Integer.parseInt(A)*Integer.parseInt(B));
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询