算法竞赛入门经典 1.2 变量及输入
摘要:
//程序1-4 A+B问题(C语言)
#include<stdio.h>
int main()
{ int a,b; scanf("%d%d",&a,&b); printf("%d\n",a+b); return 0;
} //C++语言
#include<iostream>
using namespace std; int main()
{ int a,b; cin>>a>>b; cout<<a+b<<endl; return 0;
} //程序1-5 圆柱体的表面 阅读全文
posted @ 2012-03-23 22:13 1.曲待续 阅读(220) 评论(0) 推荐(0) 编辑