- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是编程新手,所以我只需要一些帮助。我自己想出了一些事情,但现在我会说我迷失了。请记住,我不是母语人士,所以对我的错误感到抱歉:)我在大学里学习Java,但是我们必须自己做练习。该程序的作用是输入 1 和 20 这样的区间,程序将其平方,我需要找到它的正确答案。我尝试了 3 次才得到正确答案。第三次尝试后,我会询问是否要尝试另一个号码或结束程序
我遇到的实际问题是“try and catch 循环”,它需要测试我输入的是否为正数。
public static int prüfung(int ZahlPrüfen) {
while (true) {
try {
ZahlPrüfen = IntervallScanner.nextInt();
if (IntervallScanner.hasNextInt() && ZahlPrüfen > 0) {
return ZahlPrüfen;
} else if (ZahlPrüfen <= 0) {
System.out.println("Bitte Geben Sie eine Positive Zahl ein");
IntervallScanner.next();
}
} catch (InputMismatchException e) {
System.out.println("Bitte Geben Sie eine Zahl und keinen Buchstaben ein");
IntervallScanner.next();
}
}
问题是,如果我输入一个正数(所以一切正确),我必须输入两次!同样,当我输入负数时,我需要输入两次。当我输入字符串时,我收到“错误”,所以我想这工作得很好。它显示如下:
Bitte geben Sie die kleinste positive Zahl des Intervalls ein: -2
-3
Bitte Geben Sie eine Positive Zahl ein
-4
-5
Bitte Geben Sie eine Positive Zahl ein
-6
-7
Bitte Geben Sie eine Positive Zahl ein
2
2
Bitte geben Sie die Größte Zahl des Intervalls ein: 3
Wie lautet die Wurzel aus 4?
当我第一次输入正确的数字(如本例中的 2 和 2)时,代码会第一次使用它们来生成随机数,而不是 2 和 3。
到目前为止,我希望您能理解我的意思。如果你们中有人能帮助我,那就太好了,我被困了 5 个小时,无法弄清楚。我的大脑停止工作了:D
完整代码如下:
public static int zufallszahl = 0;
public static Scanner sc = new Scanner(System.in);
public static Scanner eingabe = new Scanner(System.in);
public static Scanner IntervallScanner = new Scanner(System.in);
public static int AnzahlVersuche = 0;
public static int k = 0;
public static int kleineZahl;
public static int großeZahl;
public static int ZahlPrüfen;
public static int ZahlPrüfung;
public static void main(String[] args) {
System.out.print("Bitte geben Sie die kleinste positive Zahl des Intervalls ein: ");
kleineZahl = prüfung(ZahlPrüfen);
System.out.print("Bitte geben Sie die Größte Zahl des Intervalls ein: ");
großeZahl = prüfung(ZahlPrüfen);
do {
ermittleZufallszahl(großeZahl, kleineZahl);
int quadrad = (int) Math.pow(zufallszahl, 2);
System.out.println("Wie lautet die Wurzel aus " + quadrad + "?");
erneuterVersuch();
} while (k == 1);
}
public static void ermittleZufallszahl(int max, int min) {
zufallszahl = (int) ((Math.random() * (max - min + 1)) + min);
}
public static int erneuterVersuch() {
AnzahlVersuche = 0;
while (AnzahlVersuche <= 2) {
int input = sc.nextInt();
if (input == zufallszahl) {
System.out.println("Das ist richtig,toll!");
System.out.println("Wollen Sie eine andere Zahl probieren? Wenn Ja geben Sie (j) ein, wenn Nein geben Sie (n) ein.");
String eingabe1 = eingabe.nextLine();
switch (eingabe1) {
case "j":
case "J":
k = 1;
return k;
case "n":
case "N":
System.out.println("Programm wird jetzt beendet");
k = 2;
System.exit(0);
}
} else {
System.out.println("Das ist falsch, schade!");
++AnzahlVersuche;
if (AnzahlVersuche == 3) {
System.out.println("Sie haben es mit 3 Versuchen leider nicht geschafft! Die richtige Antwort wäre " + zufallszahl + " gewesen.");
System.out.println("Wollen Sie eine andere Zahl probieren? Wenn Ja geben Sie (j) ein, wenn Nein geben Sie (n) ein.");
String eingabe1 = eingabe.nextLine();
switch (eingabe1) {
case "j":
case "J":
k = 1;
break;
case "n":
case "N":
System.out.println("Programm wird jetzt beendet");
k = 2;
System.exit(0);
}
}
}
}
return k;
}
public static int prüfung(int ZahlPrüfen) {
while (true) {
try {
ZahlPrüfen = IntervallScanner.nextInt();
if (IntervallScanner.hasNextInt() && ZahlPrüfen > 0) {
return ZahlPrüfen;
} else if (ZahlPrüfen <= 0) {
System.out.println("Bitte Geben Sie eine Positive Zahl ein");
IntervallScanner.next();
}
} catch (InputMismatchException e) {
System.out.println("Bitte Geben Sie eine Zahl und keinen Buchstaben ein");
IntervallScanner.next();
}
}
}
最佳答案
Wie gehts:)
Ich verstehe das nicht:/
public static int prüfung(int ZahlPrüfen) {
while (true) {
try {
int ZahlPrüfen = IntervallScanner.nextInt();
if (IntervallScanner.hasNextInt() && ZahlPrüfen > 0) {
return ZahlPrüfen;
} else if (ZahlPrüfen <= 0) {
System.out.println("Bitte Geben Sie eine Positive Zahl ein");
IntervallScanner.next();
}
} catch (InputMismatchException e) {
System.out.println("Bitte Geben Sie eine Zahl und keinen Buchstaben ein");
IntervallScanner.next();
}
}
您传入了 ZahlPrufen
,但将其替换为 IntervallScanner.nextInt();
。所以传入的值从未被使用过。
您不需要接受参数的方法。
错误在于您在 if 条件中检查 hasNextInt() ,该条件需要用户的另一个输入。您只需检查刚刚输入的号码的有效性。
public static int prüfung() {
while (true) {
try {
int ZahlPrüfen = IntervallScanner.nextInt();
if (ZahlPrüfen > 0) {
return ZahlPrüfen;
} else {
System.out.println("Bitte Geben Sie eine Positive Zahl ein");
}
} catch (InputMismatchException e) {
System.out.println("Bitte Geben Sie eine Zahl und keinen Buchstaben ein");
IntervallScanner.next();
}
}
}
关于java - 带返回值的 Try/Catch 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33287792/
我刚刚遇到了一个非常奇怪的行为。这是代码: // So far everything's fine val x: Try[Try[Unit]] = Try(Try{}) x: scala.util.T
“输出”是一个序列化的 OpenStruct。 定义标题 try(:output).try(:data).try(:title) 结束 什么会更好? :) 最佳答案 或者只是这样: def title
我有以下元组 - (t1,t2) :(Try,Try) 我想检查两者是否成功或其中之一是否失败,但避免代码重复。像这样的东西: (t1,t2) match { case (Success(v1),Su
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
有一点特殊,尝试创建一段 try catch 代码来处理 GoogleTokenResponse,但编译器在 try 时抛出异常错误。有什么想法吗? 错误信息: | Loading Grails 2.
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
为什么在 readFile2() 中我需要捕获 FileNotFoundException 以及稍后由 close( ) 方法,并且在 try-with-resources(inside readfi
我正在使用 Apache POI 尝试读取 Word 文件,但即使您使用过 Apache POI,这仍然应该是可以回答的。在 HWPF.extractor 包中有两个对象:WordExtractor
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
我正在使用 Try::Tiny尝试捕捉。 代码如下: use Try::Tiny; try { print "In try"; wrongsubroutine(); # undefi
我想知道这样的代码是否会在抛出异常后总是中断而不继续运行,因此代码不会继续执行第二个 temp.dodaj(b)。 Avto *a = new Avto("lambo",4); Avt
我知道在try子句中必须有一个与资源关联的变量声明。 但是除了被分配一个通常的资源实例化之外,它是否可以被分配一个已经存在的资源,例如: public String getAsString(HttpS
我有一个写的方法。此方法仅扫描用户输入的整数输入。如果用户输入一个字符值,它将抛出一个输入不匹配异常,这是在我的 Try-Catch 语句中处理的。问题是,如果用户输入任何不是数字的东西,然后抛出异常
我注意到这不会编译: PrintWriter printWriter = new PrintWriter("test.txt"); printWriter.append('a'); printWrit
我经常看到人们写这样的代码: try: some_function() except: print 'something' 当我认为这样做更干净时: try: some_functio
该应用程序将在第二个显示器上正常显示内容。问题是当我旋转 iPad 时内容不会在 iPad 上旋转。 看过: http://developer.apple.com/library/ios/#qa/qa
我正在学习 java,我发现我不喜欢的一件事通常是当我有这样的代码时: import java.util.*; import java.io.*; public class GraphProblem
我使用 C++ 有一段时间了,对普通的 try/catch 很熟悉。但是,我现在发现自己在 Windows 上,在 VisualStudio 中编码以进行 COM 开发。代码的几个部分使用了如下内容:
我是一名优秀的程序员,十分优秀!