problemscpp
A collection of my answers to algorithm problems in c++.
静态 Public 成员函数 | 所有成员列表
luogu::P1001类 参考

洛谷 P1001 A+B Problem 更多...

#include <luogu.h>

静态 Public 成员函数

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

详细描述

洛谷 P1001 A+B Problem

在文件 luogu.h10 行定义.

成员函数说明

◆ main()

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

在文件 luogu.cpp19 行定义.

19 {
20 unsigned int a;
21 unsigned int b;
22 cin >> a >> b;
23 cout << a + b;
24 return 0;
25 }

被这些函数引用 luogu::TEST().


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