<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Get A!</title>
		<link>http://foraofhin.forum888.com/feed/?</link>
		<description>最新主題</description>
		<lastBuildDate>Mon, 10 Nov 2008 13:31:59 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Get A!</title>
			<url>http://illiweb.com/fa/beach/logo_en.gif</url>
			<link>http://foraofhin.forum888.com/feed/?</link>
		</image>
		<item>
			<title>同學blog, xanga, plurk, twitter...匯集</title>
			<link>http://foraofhin.forum888.com/forum-f1/topic-t2.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>有o既就留低啦</description>
			<category>吹水區</category>
			<pubDate>Fri, 24 Oct 2008 15:21:48 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f1/topic-t2.htm#2</comments>
			<guid>http://foraofhin.forum888.com/forum-f1/topic-t2.htm</guid>
		</item>
		<item>
			<title>水靜蛾飛.......</title>
			<link>http://foraofhin.forum888.com/forum-f1/topic-t12.htm</link>
			<dc:creator>ctm007</dc:creator>
			<description><![CDATA[人都去哪了??? <img src="http://illiweb.com/fa/i/smiles/confused.png" alt="confused" longdesc="39" />]]></description>
			<category>吹水區</category>
			<pubDate>Mon, 10 Nov 2008 13:31:59 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f1/topic-t12.htm#17</comments>
			<guid>http://foraofhin.forum888.com/forum-f1/topic-t12.htm</guid>
		</item>
		<item>
			<title>英文story精神範圍</title>
			<link>http://foraofhin.forum888.com/forum-f6/topic-t10.htm</link>
			<dc:creator>誠-ω-♂</dc:creator>
			<description><![CDATA[<img src="http://farm4.static.flickr.com/3046/3012397378_4ee31cfc31_b.jpg" border="0" alt="" />
<br />
<img src="http://farm4.static.flickr.com/3282/3012397374_30dd50e9a1_b.jpg" border="0" alt="" />
<br />

<br />
Story Questions
<br />
1.	How did Donovan Grant become a ‘Moon killer’?  P. 5
<br />
2.	How did Kronsteen defend himself when he went to see General G.?  P. 23
<br />
3.	What did Tatiana Romanova tell Darko Kerim on the ferry?  P. 38
<br />
4.	Describe James Bond.  P102 (3)]]></description>
			<category>英文科</category>
			<pubDate>Sat, 08 Nov 2008 07:13:46 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f6/topic-t10.htm#13</comments>
			<guid>http://foraofhin.forum888.com/forum-f6/topic-t10.htm</guid>
		</item>
		<item>
			<title>[分享]鞍點</title>
			<link>http://foraofhin.forum888.com/forum-f11/topic-t8.htm</link>
			<dc:creator>狂貓</dc:creator>
			<description>procedure TForm1.Button1Click(Sender: TObject);

var

 sum : array[1..4,1..4] of integer;

 i,j,x,y,min : integer;

 print : boolean;

 s : string;

begin



edit1.text :='';

edit2.text :='';

memo1.clear;

randomize;

for y := 1 to 4 do

  for x := 1 to 4 do

    sum[x,y] := random(40)*10;



for y := 1 to 4 do

 begin

  for x := 1 to 4 do

   if sum[x,y]&gt;99 then s := s+' '+ inttostr(sum[x,y])

    else s := s + '  '+ inttostr(sum[x,y]);

  memo1.lines.add(s);

  s  ...</description>
			<category>資訊科技科</category>
			<pubDate>Sat, 08 Nov 2008 05:26:19 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f11/topic-t8.htm#11</comments>
			<guid>http://foraofhin.forum888.com/forum-f11/topic-t8.htm</guid>
		</item>
		<item>
			<title>讀未知個數排序後輸出</title>
			<link>http://foraofhin.forum888.com/forum-f11/topic-t11.htm</link>
			<dc:creator>狂貓</dc:creator>
			<description>procedure TForm1.Button1Click(Sender: TObject);

var

f: textfile;

i,j:integer;

num : array[1..2000] of integer;

all : integer;



begin

assignfile(f,'ran.txt');

reset(f);

all := 0;

while not eof(f) do

 begin

  all := all+1;

  readln(f,num[all]);

 end;

 closefile(f);



 for i := 1 to (all-1) do

  for j := 1 to all-i do

   if num[j]&gt;num[j+1] then swap(num[j],num[j+1]);



   assignfile(f,'out.txt');

   rewrite(f);

   for i := 1 to all do writeln(f,num[i]);

  ...</description>
			<category>資訊科技科</category>
			<pubDate>Mon, 10 Nov 2008 05:41:56 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f11/topic-t11.htm#15</comments>
			<guid>http://foraofhin.forum888.com/forum-f11/topic-t11.htm</guid>
		</item>
		<item>
			<title>[分享] 前置和和後置和</title>
			<link>http://foraofhin.forum888.com/forum-f11/topic-t9.htm</link>
			<dc:creator>狂貓</dc:creator>
			<description>procedure TForm1.Button1Click(Sender: TObject);

var num : array [1..7] of integer;

i,j,sum1,sum2 : integer;

s : string;

begin

memo1.clear;

randomize;

for i := 1 to 7 do

 begin

 num[i]:= random(19)+1;

 memo1.Lines.add(inttostr(num[i]));

 end;



sum1 := 0;

sum2 := 0;

j := 7;

s := '相同的前置和後置和：';

for i := 1 to 7 do

  begin

   sum1 := sum1 + num[i];

   while sum1&gt;sum2 do

    begin

     sum2 := sum2 + num[j];

     j := j-1;

    end;

  ...</description>
			<category>資訊科技科</category>
			<pubDate>Sat, 08 Nov 2008 05:27:44 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f11/topic-t9.htm#12</comments>
			<guid>http://foraofhin.forum888.com/forum-f11/topic-t9.htm</guid>
		</item>
		<item>
			<title>11-08國語問答</title>
			<link>http://foraofhin.forum888.com/forum-f5/topic-t7.htm</link>
			<dc:creator>狂貓</dc:creator>
			<description>《始得西山宴遊記》

1. 試述文中借景抒情，情景交融的地方。

(1) 「是山之特立，不與培塿為類」暗示自己像「西山」一樣孤傲不群，絕不和像「培塿」一樣的小人同流合污。



(2) 「蒼然暮色，自遠而至，至無所見，而猶不欲歸」作者以蒼然暮色暗喻朝廷的黑暗勢力擴張，以使他被遠貶永州。「歸」是暗示了返回朝廷的意向，然而小人當道，又使他「不欲歸」，反映了作者無可奈何的複雜情緒。



(3)  ...</description>
			<category>國文科</category>
			<pubDate>Fri, 07 Nov 2008 14:59:50 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f5/topic-t7.htm#10</comments>
			<guid>http://foraofhin.forum888.com/forum-f5/topic-t7.htm</guid>
		</item>
		<item>
			<title>申請申請申請申請</title>
			<link>http://foraofhin.forum888.com/forum-f20/topic-t6.htm</link>
			<dc:creator>Jeffrey Fok</dc:creator>
			<description>我申請做數學科版主。</description>
			<category>版主申請區</category>
			<pubDate>Mon, 27 Oct 2008 13:18:26 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f20/topic-t6.htm#8</comments>
			<guid>http://foraofhin.forum888.com/forum-f20/topic-t6.htm</guid>
		</item>
		<item>
			<title>第一段 / 第三次 / 數學測驗 (代數) - 補習班題目</title>
			<link>http://foraofhin.forum888.com/forum-f7/topic-t5.htm</link>
			<dc:creator>Jeffrey Fok</dc:creator>
			<description><![CDATA[<img src="http://x0e.xanga.com/da2f11e435732217667805/o170408533.jpg" border="0" alt="" />
<br />

<br />
<img src="http://xa9.xanga.com/b3ef17e6d1332217669216/o170409780.jpg" border="0" alt="" />]]></description>
			<category>數學科</category>
			<pubDate>Mon, 27 Oct 2008 12:53:13 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f7/topic-t5.htm#7</comments>
			<guid>http://foraofhin.forum888.com/forum-f7/topic-t5.htm</guid>
		</item>
		<item>
			<title>英文精神...</title>
			<link>http://foraofhin.forum888.com/forum-f6/topic-t4.htm</link>
			<dc:creator>誠-ω-♂</dc:creator>
			<description><![CDATA[<img src="http://farm4.static.flickr.com/3047/2971038991_c115599235_b.jpg" border="0" alt="" />
<br />
<img src="http://farm4.static.flickr.com/3051/2971038997_ff774b539e_b.jpg" border="0" alt="" />]]></description>
			<category>英文科</category>
			<pubDate>Sat, 25 Oct 2008 14:58:37 GMT</pubDate>
			<comments>http://foraofhin.forum888.com/forum-f6/topic-t4.htm#4</comments>
			<guid>http://foraofhin.forum888.com/forum-f6/topic-t4.htm</guid>
		</item>
	</channel>
</rss>