分析:
hello world级别,输出即可
题解:
#include <bits/stdc++.h>
using namespace std;
int main() {
printf("I lost my cellphone!\n");
return 0;
}总结:
简单的输出语法。

hello world级别,输出即可
#include <bits/stdc++.h>
using namespace std;
int main() {
printf("I lost my cellphone!\n");
return 0;
}简单的输出语法。