home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH09LIST C:\UT2004"
- // Identifies the package
- // CH09_04LIST.uc
-
-
- class CH09_04LIST extends Commandlet;
-
- function int main(string args){
-
- // #1
- // Declaration of floats
- local float rEarthToMoon;
- local float rAgeOfSolarSystem;
- local float rAgeOfKnownUniverse;
- // #2
- // Use of scientific notation to initialize
- //identifiers
- rEarthToMoon = 3.84401e6;
- rAgeOfSolarSystem = 4.6e9;
- rAgeOfKnownUniverse = 16.5e9;
-
- // #2
- log("CH09_04LIST");
- log("====Display of Data from Scientific Notation=====");
-
- log("Distance from moon to earth: "
- @ rEarthToMoon @ "kilometers.");
- log("=================================================");
-
- log("Age of the solar system: "
- @ rAgeOfSolarSystem @
- "years.");
- log("Age of the known universe: "
- @ rAgeOfKnownUniverse @
- "years.");
- log("=================================================");
- return 0;
- }
-
-
-
-
-