程序怎样取得输入、进行输出?

你的程序应该从标准输入 stdin('Standard Input')获取输出 并将结果输出到标准输出 stdout('Standard Output').例如,在C语言可以使用 'scanf' ,在C++可以使用'cin' 进行输入;在C使用 'printf' ,在C++使用'cout'进行输出. 用户程序不允许直接读写文件, 如果这样做可能会判为运行时错误 "Runtime Error"。

下面是A+B题的参考答案:

C++:

			#include <iostream>
			using namespace std;
			int main()
			{
				int a,b;
				while(cin >> a >> b)
				cout << a+b <<endl;
				return 0;
			}
			

C:

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


Java:

			import java.util.*;
			public class Main
			{
				public static void main(String args[])
				{
					Scanner cin = new Scanner(System.in);
					int a, b;
					while (cin.hasNext())
					{
					a = cin.nextInt(); b = cin.nextInt();
					System.out.println(a + b);
					}
				}
			}