本文主要是介绍A+B for Input-Output Practice (VII) --JAVA,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目:
Your task is to Calculate a + b.
Input
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
Output
For each pair of input integers a and b you should output the sum of a and b, and followed by a blank line.
Sample Input
1 5 10 20
Sample Output
630
题意:
给你两个数,求和,格式需要注意,每一个结果后面跟着一个空行;
代码如下:
JAVA:
import java.util.Scanner;public class Main {
public static void main(String[] args) {Scanner input=new Scanner(System.in);int m,a,s;while(input.hasNext()) {a=input.nextInt();s=input.nextInt();System.out.println(s+a);System.out.println();}
}
}
C++:
#include<stdio.h>int main()
{int n,m;while(~scanf("%d%d",&n,&m)){printf("%d\n\n",n+m);}return 0;
}
这篇关于A+B for Input-Output Practice (VII) --JAVA的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!