JAVA练习答案(13)
发布时间:2021-06-08
发布时间:2021-06-08
输出语句:System.out.print(digit+" "); 例:括号内是说明 输入
3 (repeat=3) 123456 -600 8
输出
1 2 3 4 5 6 6 0 0 8
import java.util.Scanner; public class Test40032{
public static void main(String []args ){ int ri, repeat;
int digit;
long n, temp, pow;
Scanner in=new Scanner(System.in); repeat=in.nextInt();
for(ri=1; ri<=repeat; ri++){ n=in.nextLong(); n=Math.abs(n); temp=n; pow=0;
while(temp>0){ temp=temp/10;
pow++;} temp=n;
while(pow>0){
digit=(int) (temp/Math.pow(10,pow-1)); pow--;
temp=(long) (temp-digit*Math.pow(10,pow)); System.out.print(digit+" "); }
System.out.println(); } } }
程序填空,不要改变与输入输出有关的语句。
输入一个正整数repeat (0<repeat<10),做repeat次下列运算:
程序模拟简单运算器的工作:输入一个算式,遇等号"="说明输入结束,输出结果。
假设计算器只能进行加减乘除运算,运算数和结果都是整数,4种运算符的优先级相同,按从左到右的顺序计算。
下一篇:领导干部经济责任审计六大重点