標題:
資料輸入 (一)
[打印本頁]
作者:
tonyh
時間:
2020-1-30 14:39
標題:
資料輸入 (一)
運用套件 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);
}
}
複製代碼
作者:
張宸翔
時間:
2020-1-30 14:58
本帖最後由 張宸翔 於 2020-1-30 15:01 編輯
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);
}
}
複製代碼
作者:
蔡承翰
時間:
2020-1-30 15:02
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
str1=c.readLine("輸入字串1:");
System.out.println("字串1:"+str1);
str2=c.readLine("輸入字串2:");
System.out.println("字串2:"+str2);
}
}
複製代碼
作者:
盧弘毅
時間:
2020-1-30 15:04
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);
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-1-30 15:04
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
str1=c.readLine("請輸入字串一: ");
System.out.println("字串一: "+str1);
str2=c.readLine("請輸入字串二: ");
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
邱翊博
時間:
2020-1-30 15:04
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);
}
}
複製代碼
作者:
沙芃妘
時間:
2020-1-30 15:05
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.println ("輸入字串一:");
str1=c.readLine();
System.out.println("字串一:"+str1);
System.out.println ("輸入字串二:");
str2=c.readLine();
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
劉家銘
時間:
2020-1-30 15: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("輸入字串二: ");
str1=c.readLine();
System.out.println("字串: "+str1);
}
}
複製代碼
作者:
蘇行一
時間:
2020-1-30 15:06
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);
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-1-30 15:08
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);
}
}
複製代碼
作者:
楊秉樺
時間:
2020-1-30 15:09
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);
}
}
複製代碼
作者:
何蕙妘
時間:
2020-1-30 15:10
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);
}
}
複製代碼
作者:
黃煜城
時間:
2020-1-30 15:10
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) ;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2