你是故意搜这个的吗?
你明明会自己做去!!
【doge】
接下来是 给那些明明会的人 史上最无敌超级详细讲解!
(这是C++最简单的题目doge)
正片开始:
第一种方法:
这是给最萌的萌新的解析:
先在代码上端加上#include <iostream>头文件:
#include <iostream>
这样就可以用cin、cout 注意:这些不是函数
然后你得加上using namespace std;
#include <iostream>
using namespace std;
要不然每次都得用std::弄得打字打自闭
写好return 0:
#include <iostream>
using namespace std;
int main() {
return 0;
}
众所周知因为输出用cout然后用两个小于号(这是规则没有什么好解释的)
所以:
#include <iostream>
using namespace std;
int main() {
cout << "" << endl;
return 0;
}
后面的endl可有可不有,那是换行符号,不影响答案正确率
(不行你自己试,我洛谷绿名的难道不知道??)
如果你非得不想要endl;那就在输出的东西后面加上一个分号就行了:
#include <iostream>
using namespace std;
int main() {
cout << "";
return 0;
}
接下来在引号里面写上你要输出的东西:
cout << "Hello,World!" << endl;
AC代码,可直接抄:
#include <iostream>
using namespace std;
int main() {
cout << "Hello,World!";
return 0;
}
稍微麻烦一点的:
#include <iostream>
int main() {
std::cout << "Hello,World!";
return 0;
}
这是算法大神的方法:
#include <cstdio>
using namespace std;
int main() {
printf("Hello,World!");
return 0;
}
或者:
#include <cstdio>
using namespace std;
int main() {
puts("Hello,World!");
return 0;
}
点赞的人一生平安~~~