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; }
运行结果:
时间: 2024-11-11 03:09:20