ex0208.cpp
来自「Visual+C+++6[1].0实用教程代码 Visual+C+++6[1]」· C++ 代码 · 共 27 行
CPP
27 行
// ex0208.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;
int a;
a=100;
while(hCout<1) {
hSum +=a;
hCout +=1;
} ;
cout<<"while语句计算值=" << hSum << endl;
hCout=1;
hSum=0;
do {
hSum +=a;
hCout +=1;
} while(hCout<1);
cout<<"do-while语句计算值=" << hSum << endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?