1 文件->新建->项目
空项目
填写项目名称
新建文件
helloworld.c
#include<iostream>
using namespace std;
int main() {
printf("welcome to c ! \n");
cout << "welcome to c++! \n" << endl;
return 0;
}
微信扫一扫
#include<iostream>
using namespace std;
int main() {
printf("welcome to c ! \n");
cout << "welcome to c++! \n" << endl;
return 0;
}
相关推荐