问题:用户输入10位数,需要计算所有数字的总和。
我正在尝试输入变量“int a [10] = {}”但它不起作用,我可以写一些结果吗?
请编写示例代码。
答案 0 :(得分:0)
您没有指定使用哪种语言,因此我假设您使用的是java编码。
为了做你要求的事,你必须这样做:
int number = 454685; // = an example number
int[] arr = new int [6]; // array of int, 6 = digits of the number
int i = 0; // counter
while (number > 0) {
arr[i] = number % 10; //stores in arr[i] the last digit
i++; //increment counter
number = number / 10; //divides the number per 10 to cancel the last digit (already stored in arr[i])
}
int sum = 0; //declares the sum variable
i = 0; //reset counter
do{
sum = sum + arr[i];
i++;
}while( i < arr.length); //this loop calculates the sum
System.out.println(sum); //prints the sum of the digits
你在这里。