【思路】注意使用long,因为int范围的数字相加a+b有可能会溢出,超过int的最大范围。
import java.util.*;
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++){
            Long A = sc.nextLong();
            Long B = sc.nextLong();
            Long C = sc.nextLong();
            if(A+B > C){
                System.out.println("Case #" + (i+1)+ ": true");
            }else{
                System.out.println("Case #" + (i+1)+": false");
            }
        }
        
    }
}