【杭电】[1090]A+B for Input-Output Practice (II)

来源:互联网 发布:网吧无线上网软件 编辑:程序博客网 时间:2024/06/02 05:30

题目描述
输入输出

话说把这几个传好是不是今天又没几篇能上传了……

#include<stdio.h>int main() {    int i,j,a,b;    scanf("%d",&j);    for(i=0; i<j; i++) {        scanf("%d %d",&a,&b);        printf("%d\n",a+b);    }    return 0;}
0 0
原创粉丝点击