解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int sum=0;
int sum1=0;
int sum2=0;
for(int i=0;i<b;i++)
{
int c=(int) (a*Math.pow(10, i));
sum+=c;
sum1+=sum;
} System.out.print(sum1);
}
}
0.0分
0 人评分
C语言训练-最大数问题 (C语言代码).........关于-1浏览:762 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:502 |
最小公倍数 (C语言代码)浏览:894 |
输出正反三角形 (C语言代码)浏览:859 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
简单的a+b (C语言代码)浏览:529 |
图形输出 (C语言代码)浏览:1422 |
剪刀石头布 (C++代码)浏览:1811 |
钟神赛车 (C语言代码)浏览:665 |
交换Easy (C语言代码)浏览:805 |