LOFTER for ipad —— 让兴趣,更有趣
输出hello world是进入一门语言的第一步,c++也不例外
#include<iostream>
using namespace std;
int main()
{
cout<<"hello world";
return 0;
}