標題:
資料輸入 (一)
[打印本頁]
作者:
tonyh
時間:
2021-8-7 20:26
標題:
資料輸入 (一)
運用套件 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);
}
}
複製代碼
作者:
林鼎傑
時間:
2021-8-7 20:57
import java.io.Console;
public class Ch04
{
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);
}
}
複製代碼
作者:
黃子倢
時間:
2021-8-7 20:58
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String a,b;
System.out.print("輸入字串一:");
a=c.readLine();
System.out.println("字串一: "+a);
System.out.print("輸入字串二:");
b=c.readLine();
System.out.println("字串二:"+b);
}
}
複製代碼
作者:
王秉鈞
時間:
2021-8-7 20:59
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1, str2;
System.out.print("請輸入字串一");
System.out.println("字串一"+str1);
System.out.print("請輸入字串二");
System.out.println("字串二"+str2);
}
}
複製代碼
作者:
余柏緯
時間:
2021-8-7 20:59
import java.lang.System;
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1,str2;
System.out.print("請輸入字串一:");
str1=c.readLine();
System.out.println("字串一:"+str1);
System.out.print("請輸入字串二:");
str2=c.readLine();
System.out.println("字串二:"+str2);
}
}
複製代碼
import java.lang.System;
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1,str2;
str1=c.readLine("請輸入字串一:");
System.out.println("字串一:"+str1);
str2=c.readLine("請輸入字串二:");
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
林佑宸
時間:
2021-8-7 21:00
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1 ,str2;
System.out.print("請輸入字串一:");
str1=c.readLine();
System.out.println("字串一: "+str1);
System.out.print("請輸入字串二:");
str2=c.readLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
許洧熏
時間:
2021-8-7 21:01
import java.io.Console;
public class Ch04
{
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);
}
}
複製代碼
作者:
朱奕祐
時間:
2021-8-14 17:36
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1 ,str2;
System.out.print("請輸入字串一:");
str1=c.readLine();
System.out.println("字串一: "+str1);
System.out.print("請輸入字串二:");
str2=c.readLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
呂尚霖
時間:
2021-8-14 19:40
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);
}
}
複製代碼
作者:
俞成章
時間:
2021-8-14 19:41
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);
}
}
複製代碼
作者:
蔡寓珉
時間:
2021-8-14 19:43
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);
}
}
複製代碼
作者:
冠宇
時間:
2021-8-14 19:44
import java.lang.System;
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1,str2;
str1=c.readLine("請輸入字串一:");
System.out.println("字串一:"+str1);
str2=c.readLine("請輸入字串二:");
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
林土水
時間:
2021-8-14 20:02
import java.io.Console;
public class Ch04
{
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);
}
}
複製代碼
作者:
陳志祐
時間:
2021-8-14 20:06
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
Console c=System.console();
String str1,str2;
System.out.print("請輸入字串一: ");
str1=c.readline();
System.out.println("字串一:"+str1);
System.out.print("請輸入字串二: ");
str2=c.readline();
System.out.println("字串二:"+str2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2