废话少说,咱直接上干货。
网站地址:bas.ssoier.cn:8086/index.php
3001:【例2.1】Hello World
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "hello world";
}
3002:【例2.2】你好世界
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "你好,世界。";
}
3003:练2.1 春节快乐
#include <bits/stdc++.h>
using namesp