作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,最初我在 while 循环中嵌套了这个 if-else 以将所有奇数的平方与数字相加。例如,如果这两个数是 10 和 20,则奇数的平方和将为 1165(11^2 + 13^2 + 15^2 ...)。所以,现在我想使用 for 循环而不是 while 循环。我看过其他示例,但我无法用我的示例来实现,因为这只是我第二次使用 C。
下面是 while 循环和答案的打印语句(我让“i”= firstNum,所以 firstNum 的值不会改变,firstNum 和 secondNum 只是用户输入的):
i = firstNum;
while (i <= secondNum) {
// checks if number is odd or even
if (i % 2 != 0) {
sumOdds += i * i;
i += 2;
}
else {
++i;
}
}
printf("\n");
printf("Sum of the squares of odd integers between %d and %d = %d\n", firstNum, secondNum, sumOdds);
最佳答案
for 循环可以通过以下方式查找示例
for ( int i = firstNum + ( firstNum % 2 == 0 ); i <= secondNum; i += 2 )
{
sumOdds += i * i;
}
这是一个演示程序。
#include <stdio.h>
int main(void)
{
int firstNum = 0, secondNum = 0;
printf( "Enter two numbers: " );
scanf( "%d %d", &firstNum, &secondNum );
if ( secondNum < firstNum )
{
int tmp = firstNum;
firstNum = secondNum;
secondNum = tmp;
}
long long int sumOdds = 0;
for ( int i = firstNum + ( firstNum % 2 == 0 ); i <= secondNum; i += 2 )
{
sumOdds += ( long long int )i * i;
}
printf( "The sum of squares of odd numbers is %llu", sumOdds );
return 0;
}
它的输出可能看起来像
Enter two numbers: 10 20
The sum of squares of odd numbers is 1165
程序的一些注释。首先,变量 i
仅在 for 循环中使用。所以应该在最小的使用范围内声明
for ( int i = firstNum + ( firstNum % 2 == 0 ); i <= secondNum; i += 2 )
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
其次,为了降低溢出的风险,最好将变量 sumOdds
至少声明为 long long int
类型。
关于c - 如何将 while 中的 if-else 语句放入 for 循环中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66215016/
我是一名优秀的程序员,十分优秀!