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

文章字数:38

问题描述

A+B for Input-Output Practice (VII)

问题分析

1
2
3
4
5
6
7
8
#include<stdio.h>
int main() {
    int a,b;
    while(scanf("%d %d",&a,&b)!=EOF) {
        printf("%d\n\n",a+b);
    }
    return 0;
}

该内容采用 CC BY-NC-SA 4.0 许可协议。

如果对您有帮助或存在意见建议,欢迎在下方评论交流。

加载中...