码家

Web Platform, Cloud and Mobile Application Development

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

#include<iostream>

int main()

{

  std::cout<<"Please Enter two number:"<<std::endl;

  int a,b;

  std::cin>>a>>b;

  std::cout<<"The sum of";

  std::cout<<a;

  std::cout<<"and";

  std::cout<<b;

  std::cout<<"is:";

  std::cout<<a+b;

  std::cout<<std:endl;

  return 0;

}

posted on 2011-10-16 10:42  海山  阅读(104)  评论(0)    收藏  举报