[525f7ad] | 1 | #include <fstream.hfa> |
---|
| 2 | #include <stdlib.hfa> |
---|
| 3 | #include <enum.hfa> |
---|
| 4 | |
---|
| 5 | struct MR { double mass, radius; }; |
---|
| 6 | |
---|
| 7 | enum( MR ) Planet { |
---|
| 8 | // mass (kg) radius (km) |
---|
| 9 | MERCURY = { 0.330_E24, 2.4397_E6 }, |
---|
| 10 | VENUS = { 4.869_E24, 6.0518_E6 }, |
---|
| 11 | EARTH = { 5.976_E24, 6.3781_E6 }, |
---|
| 12 | MOON = { 7.346_E22, 1.7380_E6 }, // not a planet |
---|
| 13 | MARS = { 0.642_E24, 3.3972_E6 }, |
---|
| 14 | JUPITER = { 1898._E24, 71.492_E6 }, |
---|
| 15 | SATURN = { 568.8_E24, 60.268_E6 }, |
---|
| 16 | URANUS = { 86.86_E24, 25.559_E6 }, |
---|
| 17 | NEPTUNE = { 102.4_E24, 24.746_E6 }, |
---|
| 18 | }; |
---|
| 19 | |
---|
| 20 | enum( double ) { G = 6.6743_E-11 }; // universal gravitational constant (m3 kg-1 s-2) |
---|
| 21 | |
---|
| 22 | static double surfaceGravity( Planet p ) with( p ) { |
---|
| 23 | return G * mass / ( radius \ 2 ); // exponentiation |
---|
| 24 | } |
---|
| 25 | static double surfaceWeight( Planet p, double otherMass ) { |
---|
| 26 | return otherMass * surfaceGravity( p ); |
---|
| 27 | } |
---|
| 28 | |
---|
| 29 | int main( int argc, char * argv[] ) { |
---|
| 30 | if ( argc != 2 ) exit | "Usage: " | argv[0] | "earth-weight"; |
---|
| 31 | |
---|
| 32 | double earthWeight = convert( argv[1] ); |
---|
| 33 | double earthMass = earthWeight / surfaceGravity( EARTH ); |
---|
| 34 | |
---|
| 35 | Planet p = fromInt( prng( __count_e__( Planet ) ) ); // select a random orbiting body |
---|
| 36 | // Planet p = fromInt( prng( 9 ) ); // select a random orbiting body |
---|
| 37 | choose( p ) { |
---|
| 38 | case MERCURY, VENUS, EARTH, MARS: |
---|
| 39 | sout | labelE( p ) | "is a rocky planet"; |
---|
| 40 | case JUPITER, SATURN, URANUS, NEPTUNE: |
---|
| 41 | sout | labelE( p ) | "is a gas-giant planet"; |
---|
| 42 | default: |
---|
| 43 | sout | labelE( p ) | "is not a planet"; |
---|
| 44 | } |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | for ( p; enum Planet ) { |
---|
| 48 | sout | "Your weight on " |
---|
| 49 | | (p == MOON ? "the" : "") | labelE(p) |
---|
| 50 | | "is" | wd( 1,1, surfaceWeight( p, earthMass ) ) | "kg"; |
---|
| 51 | } |
---|
| 52 | } |
---|