problemscpp
A collection of my answers to algorithm problems in c++.
载入中...
搜索中...
未找到
luogu::P5744::P5744类 参考

#include <luogu.h>

静态 Public 成员函数

static int main (istream &cin, ostream &cout)
 

详细描述

在文件 luogu.h700 行定义.

成员函数说明

◆ main()

int luogu::P5744::P5744::main ( istream & cin,
ostream & cout )
static

在文件 luogu.cpp2507 行定义.

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::P5744::TEST().


该类的文档由以下文件生成: