problemscpp
A collection of my answers to algorithm problems in c++.
luogu
P5744
P5744
静态 Public 成员函数
|
所有成员列表
luogu::P5744::P5744类 参考
#include <
luogu.h
>
静态 Public 成员函数
static int
main
(istream &cin, ostream &cout)
详细描述
在文件
luogu.h
第
700
行定义.
成员函数说明
◆
main()
int luogu::P5744::P5744::main
(
istream &
cin
,
ostream &
cout
)
static
在文件
luogu.cpp
第
2507
行定义.
2507
{
2508
int
n;
2509
cin >> n;
2510
for
(
int
i = 0; i < n; i++) {
2511
auto
stu = Student();
2512
cin >> stu.name;
2513
cin >> stu.age;
2514
cin >> stu.grade;
2515
stu.train();
2516
cout << stu.name <<
' '
<< stu.age <<
' '
<< stu.grade << endl;
2517
}
2518
return
0;
2519
}
该类的文档由以下文件生成:
luogu.h
luogu.cpp
制作者
1.9.2