f981545521
纸上得来终觉浅,绝知此事要躬行。

导航

 

#include <iostream>
using namespace std;

int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}

 

#include <iostream>
using namespace std;

int main()
{
int a,b,sum;
cin>>a>>b;
sum=a+b;
cout<<"a+b="<<sum<<endl;
system("pause");   //停留
return 0;
}

posted on 2016-04-08 17:41  IMFY  阅读(180)  评论(0)    收藏  举报