標題:
2023/11/04 課堂重點(含線上考試傳來這裡)
[打印本頁]
作者:
鄭繼威
時間:
2023-11-4 16:20
標題:
2023/11/04 課堂重點(含線上考試傳來這裡)
本帖最後由 鄭繼威 於 2023-11-4 17:32 編輯
[複習]
405 字串與檔案處理 (讀取檔案並修改)
407 字串與檔案處理 (字元刪除及另存新檔)
[進度]
408 字串與檔案處理 (字串長度與反轉連結)
[KitaJudge 考試]
405 字串與檔案處理 (讀取檔案並修改)
[回家作業]
考406
(記得看!記得看!記得看!)
錄影連結
作者:
柏霖
時間:
2023-11-4 16:26
import java.util.Scanner;
import java.io.FileReader;
import java.io.BufferedReader;
public class Ch04 {
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str;
int[] n=new int[3];
for(int i=0; i<=2; i++)
{
n[i]=s.nextInt();
}
try
{
BufferedReader br=new BufferedReader(new FileReader("read.txt"));
for(int i=0; i<=2; i++)
{
str=br.readLine();
for(int j=0; j<str.length(); j++)
{
if(j<n[i])
{
System.out.print(n[i]);
}
else
{
System.out.print(str.charAt(j));
}
}
System.out.println();
}
}
catch(Exception e)
{
System.out.println("error");
}
}
}
複製代碼
作者:
錢冠叡
時間:
2023-11-4 16:31
import java.util.Scanner;
import java.io.FileReader;
import java.io.BufferedReader;
public class JP405 {
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str;
int[] n=new int[3];
for(int i=0; i<=2; i++)
{
n[i]=s.nextInt();
}
try
{
BufferedReader br=new BufferedReader(new FileReader("read.txt"));
for(int i=0; i<=2; i++)
{
str=br.readLine();
for(int j=0; j<str.length(); j++)
{
if(j<n[i])
{
System.out.print(n[i]);
}
else
{
System.out.print(str.charAt(j));
}
}
System.out.println();
}
}
catch(Exception e)
{
System.out.println("error");
}
}
}
複製代碼
作者:
張駿霖
時間:
2023-11-4 16:32
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.Scanner;
public class JP405 {
public static void main(String[] args) throws Exception {
int t[]=new int[3];
Scanner s=new Scanner(System.in);
for(int i=0; i<3; i++)
t[i]=s.nextInt();
BufferedReader br=new BufferedReader(new FileReader("read.txt"));
for(int i=0; i<3; i++)
{
String str=br.readLine();
for(int j=0, len=str.length(); j<len; j++)
{
if(j<t[i])
System.out.print(t[i]);
else
System.out.print(str.charAt(j));
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2