herrDeng網內搜尋

自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
請用CPU-Z軟體檢測Cache & Memory 註:快取(L1-L3: SRAM) 第一級快取(L1)–通常存取只需要幾個週期,通常是幾十個KB。 第二級快取(L2)–比L1約有2到10倍較高延遲性,通常是幾百個KB或更多。 第三級快取(L3)(不...
-
C++ DP速解難題leetcode 3363 Find the Maximum Number of Fruits Collected [Python解請進]
-
計算gcd(123456789,999999999)
-
需要練習的Java程式:
-
輸入字串s 輸入int x 輸出 x個s
-
Leetcode 342 Power of Four幾個C++一行解 [codes on Leetcode] https://leetcode.com/problems/power-of-four/solutions/7081839/9-ways-of-bit-manipula...
-
問int怎麼存-689這個數字。 int用4個bytes。 答案請用16進位表達。
2 則留言:
0:林韋凱 10
1:鄭宇志 80
2:林挺生 41
3:林美君 69
4:彭盛媚 83
5:劉修駿 83
6:宋宏杰 99
7:吳俊昌 73
8:何啟維 12
9:湯志平 53
10:李逸翔 62
11:馬鴻岳 9
12:彭宇霆 53
13:黃羿綺 2
14:林香毓 79
15:陳秋茹 68
Process completed.
import java.io.*;
import java.util.*;
class student
{
String name;
int number;
}
public class random
{
public static void main(String [] args) throws IOException
{
student[] X=new student[16];
FileReader fr=new FileReader("student.txt");
BufferedReader bfr=new BufferedReader(fr);
String tmp;
for (int i=0;i<16;i++)
{
X[i]=new student();
tmp=bfr.readLine();
X[i].name=tmp;
X[i].number=(int)(100*Math.random());
}
fr.close();
FileWriter fw=new FileWriter("sorce.txt");
BufferedWriter bfw=new BufferedWriter(fw);
for (int k=0;k<16;k++)
{
System.out.print(k+":");
System.out.println(X[k].name+"\t"+X[k].number);
bfw.write(k+":"+X[k].name+"\t"+X[k].number);
bfw.newLine();
}
bfw.flush();
fw.close();
}
}
class hello
{
public static void main(String [] arg){
for(int i=1;i<=20; i=i+1)
{
System.out.println("好同學");
}
}
}
張貼留言