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
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main() {
cout <<
"# 入力を終了するときは、" << endl <<
"# 生徒名を入力せずに[Enter]キーを押してください。" << endl;
// 生徒名を取得する処理
map<string, string> school;
string name;
int i;
for (i = 1; ; i++) {
cout << "セイトNo." << i << " ? ";
getline(cin, name);
if (name.empty()) break;
school["seito" + i] = name;
}
// 生徒名を羅列する処理
map<string, string>::iterator seito;
cout << endl <<
"生徒名簿" << endl;
for (int i = 1; ; i++) {
seito = school.find("seito" + i);
if (seito == school.end()) break;
cout << i << ": " << seito->second << endl;
}
return 0;
}