problemscpp
A collection of my answers to algorithm problems in c++.
载入中...
搜索中...
未找到
codeforces.h
浏览该文件的文档.
1//
2// Created by wangzhiheng on 17/10/2025.
3//
4
5#ifndef PROBLEMSCPP_CODEFORCES_H
6#define PROBLEMSCPP_CODEFORCES_H
7#include <iosfwd>
8
9using namespace std;
10
11namespace codeforces {
12 namespace beautiful_average {
13 int main(istream & /*cin*/, ostream & /*cout*/);
14 }
15
16 namespace beautiful_string {
17 int main(istream & /*cin*/, ostream & /*cout*/);
18 }
19
20}// namespace codeforces
21
22#endif//PROBLEMSCPP_CODEFORCES_H
int main(istream &cin, ostream &cout)
int main(istream &cin, ostream &cout)