课时2作业1

Description

各位C督学营的同学,大家好,这是一道开启编程之路的入门题,要求是请输出 hello wangdao

Input

不需要输入

Output

hello wangdao

Sample Input 1

不需要

Sample Output 1

hello wangdao

#include 
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
const int N = 1e5 + 10;
int a[N];

void solve() {
    cout << "hello wangdao";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int _ = 1;
//    cin >> _;
    while (_ -- ) {
        solve();
    }
    return 0;
}

你可能感兴趣的:(考研,#,c语言督学训练营,c++,算法,数据结构)