新人求助,dve-C++
求各位老师帮帮忙我用dve-C++按课本编程,却怎么也编译不了
哪怕只是一段最简单的程序,也总是莫名的出现各种编译错误
举例1:
#include<iostream>
using namespace std;
int main()
{
cout<<"Follow me to study C++!!!"<< end 1;
system("pause");
return 0;
}
错误原因如下:
E:\未命名1.cpp [Error] 'end' was not declared in this scope
举例2:
#include <stdio.h>
int main(void)
{
printf("你好,世界!!!")
getchar();
return 0;
}
错误原因如下:
E:\未命名1.cpp [Error] expected ';' before 'getchar'