0
点赞
收藏
分享

微信扫一扫

helloworld

兽怪海北 2022-02-18 阅读 125


 1 文件->新建->项目

helloworld_ios


空项目

helloworld_ios_02

填写项目名称

helloworld_c++_03


新建文件

helloworld_#include_04

helloworld_ios_05

helloworld.c

#include<iostream>

using namespace std;

int main() {

printf("welcome to c ! \n");
cout << "welcome to c++! \n" << endl;

return 0;


}

编译

helloworld_#include_06

运行

helloworld_#include_07

helloworld_c++_08




举报

相关推荐

0 条评论