问题:用户输入10位的数字,需要计算所有数字的总和。
我正在尝试输入变量“int a [10] = {}”,但它不起作用,我可以在其中写入一些结果吗?
请写示例代码。
问题:用户输入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
给你。