• 大小: 2.73KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-PK少年高斯(入门级实例050).zip

资源截图

代码片段和文件信息

// PKGauss.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“

int main()
{
int i=1sum=0;
while (i < 101)
{
sum += i;
i++;
}
printf(“╔═════════════════════╗\n“);
printf(“║   使用while语句计算从数字1加到100的和    ║\n“);
printf(“╠═════════════════════╣\n“);
printf(“║        从数字1加到100的和是%d          ║\n“sum);
printf(“╚═════════════════════╝\n“);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         508  2010-08-06 14:15  PKGauss\PKGauss.cpp
     文件        4548  2010-08-06 14:04  PKGauss\PKGauss.dsp
     文件         539  2010-08-06 14:04  PKGauss\PKGauss.dsw
     文件         294  2010-08-06 14:04  PKGauss\StdAfx.cpp
     文件         769  2010-08-06 14:04  PKGauss\StdAfx.h

评论

共有 条评论