Posts by Dates December 2024 MTWTFSS 1 2345678 9101112131415 16171819202122 23242526272829 3031 « Nov
Ukraine2024-02-01 9 ANGE1 valorant settings valorant settings Ukraine2024-04-06 10 W0nderful cs2 settings cs2 settings Ukraine2024-02-01 unbindall bind "0" "slot9" bind "1" "slot1" bind "2" "slot2" bind "3" "slot3" bind "4" "slot4" ...
1publicclassMain {23publicstaticvoidmain(String[] args) {45Scanner sc =newScanner(System.in);6intvexNum = 0;7intarcNum = 0;8while(true) {9System.out.print("请输入要建立无向图的总顶点数和总边数,以空格隔开:");10try{11vexNum =sc.nextInt();12arcNum =sc.nextInt();13break;14}catch(...