ChatServer/main.cc
2024-12-07 20:32:47 +08:00

17 lines
288 B
C++

#include <iostream>
using namespace std;
void output(){ //循环输出1-100
for(int i = 1; i <= 100; i++){
cout << i << endl;
}
return;
}
int main() {
cout << "100" << endl;
cout << "hello world!" << endl;
cout << "hello too!" << endl;
return 0;
}