gpt4 book ai didi

java - SPOJ 中的 NZEC 错误

转载 作者:行者123 更新时间:2023-11-30 04:05:28 25 4
gpt4 key购买 nike

当我粘贴此代码时,为什么我会在 SPOJ 中收到运行时 NZEC 错误?

using System;

public class Test
{
public static void Main(string[] args)
{
int t = int.Parse(Console.ReadLine());

while (t < 1 || t > 100)
{
t = int.Parse(Console.ReadLine());
}

string[] words = new string[t];

for (int i = 0; i < t; i++)
{
string word = Console.ReadLine();
while (word.Length > 100 || word.Length < 1)
{
word = Console.ReadLine();
}
words[i] += word;
}


foreach (var item in words)
{
for (int i = 0; i < item.Length / 2; i+=2)
{
Console.Write(item[i]);
}
Console.WriteLine();
}

}
}

我已经尝试了我能想到的所有输入,并且运行良好。什么会导致抛出非零错误?提前致谢。

最佳答案

您无法将 SPOJ 提交放入包中,因此请删除声明:

package spoj.test;

非零退出代码可能来自 JVM 无法加载该类来运行它。

关于java - SPOJ 中的 NZEC 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20858631/

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