ex0207.cpp
来自「Visual+C+++6[1].0实用教程代码 Visual+C+++6[1]」· C++ 代码 · 共 19 行
CPP
19 行
// ex0207.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream.h>
int main(int argc, char* argv[])
{
int hSum=0;
int hCout=1;
while(hCout<=100) {
hSum +=hCout;
hCout +=1;
} ;
cout<<"1~100所有自然数之和=" << hSum << endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?