发布信息
发布信息
http://www.nowcoder.com/questionTerminal/20e59d0f388448c68f581b9d3ca66049
分析:
hello world级别,输出即可,参考https://blog.nowcoder.net/n/a979719a2bde454c8e9f4da6e8bc3f02
题解:
#include <bits/stdc++.h>
using namespace std;
int main() {
printf("I lost my cellphone!\n");
return 0;
}总结:
简单的输出语法。
