gpt4 book ai didi

java - ACM ICPC 如何使用PC^2?

转载 作者:行者123 更新时间:2023-12-01 12:20:33 27 4
gpt4 key购买 nike

昨天我们在PC上进行了练习^2,它是比赛的官方裁判软件,但我遇到了问题,我的问题代码是正确的,答案也是正确的,但当我将其发送到软件时它回答我“运行时错误”。

我认为我的问题在输入文件中,他们想要来自输入文件的输入和搁浅的输出,这是我第一次处理文件,所以我进入默认包,然后新建>其他>空>然后我填充文件有了输入,然后我编写了这段代码,它在我的电脑上运行 100%,然后我通过 pc^2 提交它,我仅按照他们所说的那样发送 .java 文件,但它告诉我运行时错误。

这是问题problem B但他们希望从文件中输入任何有该软件经验的人都可以帮助我。

import java.io.File;
import java.util.Scanner;

public class omar {

public static void main(String[] args) throws Exception {
Scanner n = new Scanner(new File("C:\\Users\\omar\\Documents\\NetBeansProjects\\omar\\src\\omar.in"));
int t = n.nextInt();
int x;
char o;
int y;
int z;
int res;
String[] c = new String[t];
for (int i = 0; i < t; i++) {
x = n.nextInt();
o = n.next().charAt(0);
y = n.nextInt();
n.next();
z = n.nextInt();
if (o == '+') {
res = x + y;
} else {
res = x - y;
}
if (res == z) {
c[i] = "YES";
} else {
c[i] = "NO";
}
}
int counter = 1;
for (int j = 0; j < c.length; j++) {
System.out.println("Case" + " " + counter + ":" + " " + c[j]);
counter++;
}
}
}

最佳答案

Scanner n = new Scanner(new File("C:\\Users\\omar\\Documents\\NetBeansProjects\\omar\\src\\omar.in"));

这是文件在您计算机中的位置。当你在法官的计算机上运行程序时,这对你没有任何帮助。您需要从竞赛说明中指定的位置打开文件。

关于java - ACM ICPC 如何使用PC^2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26694322/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com