C++HelloWorld入门大吉


Program.h头文件中的内容
#include<iostream>
using namespace std;

#include "Program.h"
int main()
{
 try
 {       int sum;
  cin>>sum;
  cout<<"HelloWorld!"<<'\t'<<sum;
  int test;
  cin>>test;
  return 0;
 }
 catch(exception e)
 {
 }
}

 

posted @ 2013-05-30 21:40  Predator  阅读(202)  评论(0编辑  收藏  举报