標題:
資料輸入 (一)
[打印本頁]
作者:
tonyh
時間:
2021-1-21 14:51
標題:
資料輸入 (一)
運用套件 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-1-21 15:31
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
str1=c.readLine("Enter Sentence 1: ");
System.out.println("Senetence 1: "+str1);
str2=c.readLine("Enter Sentence 2: ");
System.out.println("Sentence 2: "+str2);
}
}
複製代碼
作者:
紀承典
時間:
2021-1-21 15:36
public class Ch03
{
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-1-21 15:37
本帖最後由 楊小萱 於 2021-1-21 15:41 編輯
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-1-21 15:38
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-1-21 15:38
import java.io.Console;
public class Ch03
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
st1=c.resdLin("請輸入字串一");
System.out.println("字串一:"+str1);
st2=c.resdLin("請輸入字串二");
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-21 15:39
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-1-21 15:39
import java.io.Console;
public class Ch04
{
public static void main (String args[])
{
String x,y;
Console c=System.console();
x=c.readLine("請輸入字串:");
System.out.println("您剛輸入了:"+x);
y=c.readLine("請輸入字串:");
System.out.println("您剛輸入了:"+y);
}
}
複製代碼
作者:
王博裕
時間:
2021-1-21 15:41
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-1-21 15:48
import java.io.Console;
public class Ch04
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串α:");
str2=c.readLine("輸入字串β:");
System.out.println("字串α為:"+str1);
System.out.println("字串β為:"+str2);
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-21 15:50
import java.io.Console;
public class Ok5{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串一:");
str2=c.readLine("輸入字串二:");
System.out.println("字串一:"+str1);
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
紀承典
時間:
2021-1-21 15:55
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
int a;
float b;
Console c=System.console();
a=Integer.parseInt(c.readline("輸入一整數:"));
System.out.println("剛輸入:"+a");
b=Float.parseFloat(c.readline("輸入一浮點數:"));
System.out.println("剛輸入:"+b");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2