码迷,mamicode.com
首页 > 编程语言 > 详细

C语言练习2

时间:2016-06-08 14:07:06      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

 

 

#include <stdio.h>
int main(void)
{
    long sum=0L;
    int count =0;
    int i,j;这个地方必须把它全局声明。这样才不会出现一个叫做   :只允许在 C99 模式下使用‘for’循环初始化声明   的错误。

    printf("\nEnter  the number of integers you wnat to sum:");
    scanf("%d",&count);

    for(i=1;i<=count;i++)
    {
        sum=0L;
    
        for (j=1;j<=i;j++)
            sum+=j;

    
    printf("\n%d\t%ld",i,sum);
    }
    system("pause");
    return 0;

}

 

 

#include <stdio.h>
int main(void)
{
    long sum=0L;
    int count =0;
    int i,j=1;

    printf("\nEnter  the number of integers you wnat to sum:");
    scanf("%d",&count);
    
    for (i=1;i<=count;i++)
    {

    sum=1L;
    printf("\n1");
    

    while (j<i)
    {
    
        sum+=++j;
        printf("+%d",j);
    
    }
    printf("=%ld\n",sum);
    }
    system("pause");
    return 0;
    
}

 

C语言练习2

标签:

原文地址:http://www.cnblogs.com/xinqidian/p/5569782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!