HDU1000 A + B Problem

    xiaoxiao2021-03-26  8

    Problem Description Calculate A + B.

    Input Each line will contain two integers A and B. Process to end of file.

    Output For each case, output A + B in one line.

    Sample Input 1 1

    Sample Output 2

    Author HDOJ

    代码

    #include<stdio.h> int main(){ int long long a=0,b=0; while(~scanf("%d %d",&a,&b)) printf("%d\n",a+b); return 0; }

    用 while(scanf(“%d%d”,&a,&b)!=EOF) 也可以……

    转载请注明原文地址: https://ju.6miu.com/read-650220.html

    最新回复(0)