问题:用户输入10位的数字,需要计算所有数字的和。
我试图键入变量"int a[10]={}",但它不起作用,我可以在其中写一些结果吗?
请写下示例代码。
您没有指定使用的是哪种语言,所以我假设您使用的是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
给你。