2008年9月29日 星期一

Homework 9-22-2008

Homework 9-22-2008
1. 參考單車上的靈感,或是我愛談天你愛笑,開始用部落格書寫你的個人散文,並加上適當標籤。

2. 一篇部落格是否只能使用一個標籤,如果不是,請舉出反例。 參考標籤(tag,或稱label)的定義,使用標籤有什麼好處? 標籤與分類有何不同?

3. 閱讀 Ten steps to better blogs, 然後寫下你的心得。

4. Install Google Browser Google Chrome and Firefox 3.0, try a few websites and compare their performance. For example, youtube, blogspot, msn, and yahoo.


answer
1.請參閱http://www.wretch.cc/blog/trackback.php?blog_id=k5953837&article_id=13827524

2.
(1)當然不只能用一個啊,這就是部落格人性化的功能,就像你一本書可以標籤在很多很多地 方,像我這篇文章就有兩個!
(2)標籤的好處就是可以把你所打出來的文章加以分類,以後如果想看這篇文章也方便尋找,或是讓其他來你的部落格的人也比較方便尋找想看的文章,而且一篇文章還能用多個標籤。
(3)分類跟標籤最大的不同是,分類只是對單一的項目,一本書只能在一門的分類,但標籤不同,一本書不只可以只專屬於一個標籤,它可以有很多的標籤!

3.在我看玩了這篇文章後發現其實要經營一個部落格並不是那麼容易的事,讀者與部落格版主的互動是非常重要的,要經營出一個非常吸引人近來觀看的部落格,除了自己本身部落格的用心外,要了解讀者的心也是非常重要的,要時常關心目前正在流行什麼?或者是讀者特別想要觀看的是什麼樣的文章,更重要的是自己要有毅力去好好經營部落格,不能半途而廢,總而言之,自己的努力+讀者的互動=100%的部落格!!

2008年9月26日 星期五

計算三


Lab: String Processing

Do Project 5 of Chap. 1 on Page 56.

Write a program that starts with a line of text and then outputs that line of text with the first occurrence of "hate" changed to "love". For example, a possible sample output might be

The line of text to be changed is:
I hate you.
I have rephrased that line to read:
I love you.

Hint: You may consider use the methods: indexOf(A_String) and substring(Start, End) in your program.

Cookie

計算二


Lab: Simple Arithmetics

Write a Java program that displays the results of the expressions 15/4, 4/15, 15%4, 4%15. Calculate the values of these expressions manually to verify that the displayed values are correct.

Cookie

計算一


Lab: Simple Calculation

Suppose you are a landscape architect who charges $5,000 per mile to landscape a highway, and suppose you know the length in feet of the high way you are working on. Write a Java program to calculate the price you charge when the length is 6000 and 4000, respectively.

Hint: There are 5280 feet in a mile.

Cookie