我的代碼編譯得很好,但是當我運行它時,我必須首先輸入“標記”,然后我需要輸入大小寫。我如何更改代碼,以便我不需要為案例輸入任何內(nèi)容?我知道我可以使用循環(huán)或其他方式,但我想讓它與案例一起工作。whileswitch import java.util.*; public class GradeCalcCASE { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int choice; double m; //Sets ^^^ m as the mark that the user inputs System.out.println("Please enter the mark"); m = sc.nextDouble(); choice = sc.nextInt(); if(m<0) {choice = 1;} } } }
阻止 Java 開關(guān)案例需要輸入
慕田峪7331174
2022-08-03 16:00:25