1000 A + B Problem

来源:互联网 发布:黄金交易软件排名 编辑:程序博客网 时间:2024/05/01 11:21
#include<stdio.h>int main(){    int a,b;    while(scanf("%d %d",&a,&b)!=EOF)//这里要注意根据题目意思是可以多次输入的    {        printf("%d\n",a+b);    }    return 0;}

0 0
原创粉丝点击