【PAT B1011】A+B 和 C
1 题目
2 代码
import java.util.Scanner;
public class B1011 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
long[] A = new long[T];
long[] B = new long[T];
long[] C = new long[T];
for (int i = 0; i < T; i++) {
A[i] = sc.nextLong();
B[i] = sc.nextLong();
C[i] = sc.nextL
共有 0 条评论