-
Notifications
You must be signed in to change notification settings - Fork 0
/
7.19-test.cpp
216 lines (201 loc) · 3.88 KB
/
7.19-test.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include <iostream>
#include <string>
#include <cstring>
const int ArSize = 20;
int main(void)
{
using namespace std;
int i = 0;
char name[ArSize];
cout << "Your first name, please: ";
cin >> name;
cout << "Here is your name, verticalized and ASCIIized:\n";
while (name[i] != '\0')
{
cout << name[i] << ": " << int(name[i]) << endl;
i++;
}
return 0;
}
//string类创建word数组
//int main(void)
//{
// using namespace std;
//
// string word = "?ate";
//
// for (char ch = 'a'; word != "mate"; ch++)
// {
// cout << word << endl;
// word[0] = ch;
// }
// cout << "After loop ends, word is " << word << endl;
//
// return 0;
//}
//strcmp函数的用法
//int main(void)
//{
// using namespace std;
//
// char word[5] = "?ate";
//
// for (char ch = 'a'; strcmp(word, "mate"); ch++)
// {
// cout << word << endl;
// word[0] = ch;
// }
// cout << "After loop ends, word is " << word << endl;
//
// return 0;
//}
//赋值运算符(=)、等于运算符(==)可能犯的错误
//int main(void)
//{
// using namespace std;
//
// //正确运用赋值运算符
// int quizscores[10] = { 20, 20, 20, 20, 20, 19, 20, 18, 20, 20 };
// cout << "Doing it right:\n";
// int i;
// for (i = 0; quizscores[i] == 20; i++)
// {
// cout << "quiz " << i << "is a 20\n";
// }
//
// //错误示范
// cout << "Doing it dangerously wrong:\n";
// for (i = 0; quizscores[i] = 20; i++)
// {
// cout << "quiz " << i << " is a 20\n";
// }
//
// return 0;
//}
//int main(void)
//{
// using namespace std;
//
// cout << "Enter a word: ";
// string word;
// cin >> word;
//
// char temp;
// int i, j;
//
// for (j = 0, i = word.size() - 1; j < i; --i, ++j)
// {
// temp = word[i];
// word[i] = word[j];
// word[j] = temp;
// }
//
// cout << word << "\nDone\n";
//
// return 0;
//}
//int main(void)
//{
// using namespace std;
//
// int x = 20; //original x
//
// { //block starts
// cout << x << endl; //use original x
// int x = 100; //new x
// cout << x << endl; //use new x
// } //block ends
// cout << x << endl; //use original x
//
// return 0;
//}
//int main(void)
//{
// using namespace std;
//
// int x = 20;
//
// {
// int y = 100;
// cout << x << endl;
// cout << y << endl;
// }
//
// cout << x << endl;
// cout << y << endl;
//
// return 0;
//}
//int main(void)
//{
// using namespace std;
//
// cout << "The Amazing Accounto will sum and average ";
// cout << "five number for you.\n";
// cout << "Please enter five values:\n";
//
// double number;
// double sum = 0.0;
//
// for (int i = 1; i <= 5; i++)
// {
// cout << "Value " << i << ": ";
// cin >> number;
// sum += number;
// }
//
// cout << "Five exquisite choices indeed! ";
// cout << "They sum to " << sum << endl;
// cout << "and average to " << sum / 5 << ".\n";
// cout << "The Amazing Accounto bids you adieu!\n";
//
// return 0;
//}
//int main(void)
//{
// using namespace std;
//
// double arr[5] = { 12.1, 32.8, 23.4, 45.2, 37.4 };
// double* pt = arr;
//
// cout << "*++pt = " << *++pt << endl;
// cout << "++*pt = " << ++ * pt << endl;
// cout << "*(pt)++ = " << (*pt)++ << endl;
// cout << "*pt = " << *pt << endl;
// cout << "*pt++ = " << *pt++ << endl;
// cout << "*pt = " << *pt << endl;
//
// return 0;
//}
//递增运算符(++)和递减运算符(--)
//int main(void)
//{
// using namespace std;
//
// int a = 20;
// int b = 20;
//
// cout << "a = " << a << ": b = " << b << endl;
// cout << "a++ = " << a++ << ": ++b = " << ++b << endl;
// cout << "a = " << a << ": b = " << b << endl;
//
// return 0;
//}
//使用for循环访问字符串
//int main(void)
//{
// using namespace std;
//
// cout << "Enter a world: ";
// string word;
// cin >> word;
//
// //display letter in reverse order
// for (int i = word.size() - 1; i >= 0; i--)
// {
// cout << word[i];
// }
// cout << "\nBye.\n";
//
// return 0;
//}