标签:c++ div c++编程 程序 编程基础 stream its names play
1 // 23-while循环.cpp: 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <iostream> 6 #include <climits> 7 #include <array> 8 #include<string> 9 using namespace std; 10 11 int main() 12 { 13 //while (判断) 14 //{ 15 // 循环体 16 //} 17 18 int i = 0; 19 while (i<10) //一般在控制循环次数或者遍历某个数组或集合时,使用for循环,while可以判断玩家是否死亡(用while判断不同的死亡原因)。 20 { 21 cout << "创建第"<<i+1<<"个敌人" << endl; 22 i++; 23 } 24 25 int t; 26 cin >> t; 27 return 0; 28 }
标签:c++ div c++编程 程序 编程基础 stream its names play
原文地址:https://www.cnblogs.com/uimodel/p/9346587.html