24h購物| | PChome| 登入
2014-04-18 22:56:27
2012-04-17 16:19:47

[JAVA] 上課考的定義

考這些東西真的很 ... 有些定義我覺得不錯, 所以我就打出來了Chapter 4 Defining Classes IConstructor: A constructor is a variety of method that is called when an object of the class is created using new. ...

2012-04-17 15:26:02

[JAVA][作業][Lab4] Inheritance

課本 503 第6題Create a class called Vehicle that has the manufacturer’s name (type String), number of cylinders in the engine (type int), and owner (type Person given below). Then, create a class cal...

2012-04-16 22:39:42

[UVA] 544 - Heavy Cargo


Heavy Cargo Big Johnsson Trucks Inc. is a company specialized in manufacturing big trucks. Their latest model, the Godzilla V12, is so big that the amount of cargo you can transport with it is...

2012-04-16 21:24:44

[UVA][Greedy] 11369 - Shopaholic


H: Shopaholic Lindsay is a shopaholic. Whenever there is a discount of the kind where you can buy three items and only pay for two, she goes completely mad and feels a need to buy all items...

2012-04-16 08:00:19

[JAVA] 學習 static and nonstatic method 的繼承

class SuperClass { public static void staticMethod() { System.out.println("Superclass's static method"); } public void instanceMethod() { System.out.println("Superclass's instance method"); } }...

2012-04-15 20:48:40

[UVA][Negative Weight Cycle] 558 - Wormholes


WormholesIn the year 2163, wormholes were discovered. A wormhole is a subspace tunnelthrough space and time connecting two star systems. Wormholes have a fewpeculiar properties:Wormholes are one-way ...

2012-04-15 19:52:03

[UVA] 156 - Ananagrams

Ananagrams Most crossword puzzle fans are used to anagrams--groups of words with the same letters in different orders--for example OPTS, SPOT, STOP, POTS and POST. Some words however do not have ...

2012-04-15 18:07:27

[HTML] More with HTML

Lists, Comments, and Going to the Source<ul> <li>a pony</li> <li>world peace</li> <li>iPhone 7</li></ul><ul> <ol> <li>Amass wealth.<...

2012-04-15 17:57:30

[HTML] Build a Webpage

<html><head> <title>Week 13 project</title></head><body> <h1>My Week 13 Project</h1> <img src="http://www.kateglover.co.uk/html.png" align="right"/&g...

2012-04-15 17:55:48

[UVA] 10812 - Beat the Spread!


Problem D: Beat the Spread! Superbowl Sunday is nearly here. In order to pass the time waiting for the half-time commercials and wardrobe malfunctions, the local hackers have organized a bettin...

2012-04-15 11:21:07

[HTML] HTML Fundamentals

Hyperlinks<html><head> <title>HTML - One O' One</title></head><body> <a href="http://www.codecademy.com" title="This will send you to Codecademy!">Go to Codec...

2012-04-15 09:54:48

[JavaScript] Understanding parameters

var area = function (w, l) { // We should return the product of w and l. return w*l;};var isDivisible = function (x, y) { return x%y == 0;};var power = function (base, exponent) { var result = 1; for ...

2012-04-14 20:06:27

[UVA] 11799 - Horror Dash


F Horror Dash Input Standard Input Output Standard Output It is that time of the year again! Colorful balloons and b...

2012-04-14 20:02:11

[UVA] 11559 - Event Planning


Event Planning As you didn't show up to the yearly general meeting of the Nordic Club of Pin Collectors, you were unanimously elected to organize this years excursion to Pin Ci...

2012-04-14 12:57:10

[JavaScript] Function calls as values

// Define quarter here.var quarter = function(n) { return n/4;};if (quarter(4) === 1) { console.log("The statement is true.");} else { console.log("The statement is false.");}var cube = function(n) { ...

第一頁      ‹上一頁       101 .  102 .  103 .  104 .  105 .  106 .  107 .  108 .  109 .  110 .      下一頁›      最末頁
«上十頁      第 103 / 142 頁 , 共 2116 筆       下十頁»      
TOP