1 文件->新建->项目

空项目

填写项目名称

新建文件


helloworld.c
#include<iostream>
using namespace std;
int main() {
printf("welcome to c ! \n");
cout << "welcome to c++! \n" << endl;
return 0;
}编译

运行


helloworld
阅读 127
2022-02-18





#include<iostream>
using namespace std;
int main() {
printf("welcome to c ! \n");
cout << "welcome to c++! \n" << endl;
return 0;
}


相关推荐
精彩评论(0)