POJ 1000 A+B Problem

来源:互联网 发布:com.cn是什么域名 编辑:程序博客网 时间:2024/05/17 08:15

POJ 1000 题目描述:http://poj.org/problem?id=1000

这道题就不用说了,hello word的级别啦

#include<iostream>using namespace std;int main(){    int a,b;    cin>>a>>b;    cout<<a+b<<endl;    return 0;}


0 0
原创粉丝点击