-1
を飛ばしている私は、次のコードコードのユーザ入力に応じたが、条件、そのユーザ入力ラインである
import java.util.InputMismatchException;
import java.util.Scanner;
public class Table {
public static void main(String[] args) {
Scanner sc =new Scanner(System.in);
try{
System.out.println("Enter number");
int b = sc.nextInt();
{
for(int i =1; i<=10; i++){
if (i==b)
System.out.println();
else
System.out.println(b+" * "+i+" = "+b*i);
sc.close();
}
}
} catch (InputMismatchException e){
System.out.println("Please Enter Valid Number");
}
}
}
あなたのエラーを説明します。テキストを追加し、出力をコンパイルし、コンソール出力を追加します。あなたは何を見て何を見たいと思っていますか? – AaA
歓迎StackOverflow - 誰もあなたの意思を解読したり、あなたの熟練した質問を正しく推測することはできません。 com/help/how-to-ask)と[this](https://stackoverflow.com/help/mcve) – specializt