2つの整数
なお、この問題は入出力の練習のために用意されている。 問題の末尾にサンプルプログラムなどが示されているので、参考にせよ。
-
$A, B$ は整数 $-5000 \leq A, B \leq 5000$
1つの入力ファイルは複数のテストケースからなる。
入力ファイルの最初の1行目にはテストケースの個数
2行目以降には、$T$ 個のテストケースが記述されており、各テストケースは次の形式で表される。
$A$ $B$
各テストケースに対して、$A+B$ を1行ずつ出力せよ。
3
1 2
-4 2
-100 100
3
-2
0
#include <stdio.h>
int main() {
int t;
scanf("%d", &t);
while (t-- > 0){
int a, b;
scanf("%d %d", &a, &b);
int answer = 0; // EDIT HERE
printf("%d\n", answer);
}
return 0;
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i=0; i < n; i++){
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(0); // EDIT HERE
}
sc.close();
}
}
#include <iostream>
using namespace std;
int main() {
int t;
cin >> t;
for(int i=0; i < t; i++){
int a, b;
cin >> a >> b;
int ans = 0; // EDIT HERE
cout << ans << endl;
}
}
#!/usr/local/bin/python3
def main():
cases = int(input())
for _ in range(cases):
a,b = map(int,input().split())
ans = 0 // EDIT HERE
print(ans)
if __name__ == '__main__':
main()
#!/usr/bin/ruby
n = gets.to_i
while n>0
a, b = gets.split.map(&:to_i)
ans = 0 // EDIT HERE
puts ans
n = n-1
end
- コンパイル・実行 (C)
gcc main.c
./a.out
- コンパイル・実行 (C++)
g++ main.cpp
./a.out
コンパイルでは必要に応じて、-O2
や-Wall
などのコンパイルオプションを使用するとよいかもしれない。
- ファイルから入力する
./a.out < in.txt
- ファイルへ出力する
./a.out > out.txt
- ファイル入出力を同時に行う
./a.out < in.txt > out.txt
- コンパイル・実行
javac Main.java
java Main
- ファイルから入力する
java Main < in.txt
- ファイルへ出力する
java Main > out.txt
- ファイル入出力を同時に行う
java Main < in.txt > out.txt
上記を参考に、自分で調べてください。