請問next.Line()這個函數的用法是用在那時候,其還有這個函數的意義是什麼?
請各位大大解答~~^^
2006-04-01 16:45:38 · 1 個解答 · 發問者 Yellow 2 in 電腦與網際網路 ➔ 程式設計
你說的是不是這個:nextLine() 等待輸入一行字串 (方法)
2006-04-02 00:46:36 補充:
import java.util.Scanner;public class Test123 { public static void main(String[] args) { String strName; Scanner input=new Scanner(System.in); System.out.printf("Enter your name: "); strName=input.nextLine(); System.out.printf("%s\n",strName); } }
2006-04-01 19:26:58 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋