JAVA练习答案(13)

发布时间: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种运算符的优先级相同,按从左到右的顺序计算。

JAVA练习答案(13).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219