c语言,程序门外汉,不懂

这个程序哪里有问题啊

img

没写命名空间

using namespace std;

#include <iostream>
using namespace std;

int main(){
  cout << "Hello world";
  return 0;
  //我不建议你用void
}

#include "iostream" //印象中好像不用 .h ,具体可以试试
using namespace std; //有这个才能使用cin跟cout

int main
{
...
}

img