-
Notifications
You must be signed in to change notification settings - Fork 0
/
while.cpp
44 lines (44 loc) · 868 Bytes
/
while.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//#include<iostream>
//using namespace std;
//
//int main()
//{
// //int a = 0;
// //cout << "initial a=" << a << endl;
//
// //while (a<10)
// //{
// // cout << "a=" << a << endl;
// // a++;
// //
// //}
//
// srand((unsigned int)time(NULL));
//
// int num = rand() % 100 + 1;//1-100;
// int a =0;
// cout << "num = " << num << endl;
//
// while (1)
// {
// cout << "请输入一个1-100之间的数:" << endl;
// cin >> a;
// if (a > num)
// {
// cout << "大了大了。" << endl;
// }
// else if (a<num)
// {
// cout << "小了小了。" << endl;
// }
// else
// {
// cout << "ojbk." << endl;
// break;
// }
// }
//
//
// system("pause");
// return 0;
//}