下面是我用纳米编辑器编写的我的hello world程序。
$("input:file").change(function (){
$(this).next(".selected-file").hide()
});
当我编译它时,我收到了很多错误。
#include<iostream>
using namespace std;
int main
{
cout<< "Hello world";
return 0;
}
请帮帮我。
答案 0 :(得分:1)
您错过了将main()
标记为函数的括号:
#include <iostream>
int main() {
std::cout << "!!!Hello World!!!" << std::endl;
return 0;
}
请注意,如果您明确使用std::cout
和std::endl
而不是using
整个namespace std
(这可以帮助您),则更容易理解命名空间如果你不清楚发生了什么,就会陷入困惑。或者,至少要明确你的using
:
#include <iostream>
using std::cout;
using std::endl;
int main() {
cout << "!!!Hello World!!!" << endl;
return 0;
}