標題:
資料輸入 (一)
[打印本頁]
作者:
tonyh
時間:
2018-9-17 19:23
標題:
資料輸入 (一)
本帖最後由 tonyh 於 2019-6-30 13:28 編輯
運用套件 java.io 下的 Console 類別, 作字串輸入的練習.
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.print("輸入字串一: ");
str1=c.readLine();
System.out.println("字串一: "+str1);
System.out.print("輸入字串二: ");
str2=c.readLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
import java.io.Console;
public class Ch03
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
作者:
黃宇綸
時間:
2018-9-17 20:13
import java.io.Console;
public class Ch03
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
作者:
洪翊展
時間:
2018-9-17 20:14
import java.io.Console;
public class Ch03
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
作者:
洪翊庭
時間:
2018-9-17 20:20
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.print("輸入字串一: ");
str1=c.readLine();
System.out.println("字串一: "+str1);
System.out.print("輸入字串二: ");
str2=c.readLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
曾堂桂
時間:
2018-9-17 20:25
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String a, b;
Console c=System.console();
a=c.readLine("輸入字串1: ");
b=c.readLine("輸入字串2: ");
System.out.println("字串1: "+a);
System.out.println("字串2: "+b);
}
}
複製代碼
作者:
啓銓
時間:
2018-9-17 20:26
本帖最後由 啓銓 於 2018-9-17 20:35 編輯
import java.io.Console;
public class Ch01
{
public static void main (String args[])
{
String str, str2;
Console c= System.console();
str=c.readLine("輸入字串1:");
str2=c.readLine("輸入字串2:");
System.out.println("你剛輸入了:"+str);
System.out.println("你剛輸入了:"+str2);
}
}
複製代碼
作者:
黃宇瑄
時間:
2018-9-17 20:28
import java.io.Console;
public class Ch02
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
作者:
李沛昂
時間:
2018-9-17 20:29
import java.io.Console;
public class Ch03
{
public static void main(String pig[])
{
String str1,str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2