1. 程式人生 > >C++入門經典-例3.17-使用while循環進行計算

C++入門經典-例3.17-使用while循環進行計算

iostream include img class png splay ace gif image

1:代碼如下:

技術分享
// 3.17.cpp : 定義控制臺應用程序的入口點。
//

#include "stdafx.h"
#include <iostream>
using namespace std;
void main()
{
    int i=0,j=0;
    cout << "執行while前j=" << j << endl;
    while(i>1)
    {
        j++;
    }
    cout << "執行while後j=" << j << endl;
}
View Code

運行結果:

技術分享

C++入門經典-例3.17-使用while循環進行計算