📄 program4_03.c
字号:
/* Program 4.3 Sum the integers from 1 to a user-specified number */
#include <stdio.h>
int main(void)
{
long sum = 0L; /* Stores the sum of the integers */
int count = 0; /* The number of integers to be summed */
/* Read the number of integers to be summed */
printf("\nEnter the number of integers you want to sum: ");
scanf(" %d", &count);
/* Sum integers from 1 to count */
for(int i = 1 ; i <= count ; i++)
sum += i;
printf("\nTotal of the first %d numbers is %ld\n", count, sum);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -