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

文章字数:36

问题描述

A+B for Input-Output Practice (III)

问题分析

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

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

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

加载中...