c++的第一个程序-Helloworld

第一个程序

  

#include<iostream>
using namespace std;

int main()
{
      cout<<"Helloworld"<<endl;
      return 0;      
}

  

猜你喜欢

转载自www.cnblogs.com/intruder/p/12180561.html