Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:ideas:teaching [2010/04/22 12:58] jeffwiki:ideas:teaching [2020/11/19 14:21] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Teaching C++ ====== ====== Teaching C++ ======
 +
 +[[http://docs.google.com/present/edit?id=0AVR-9e4hOpCbZGdnYnhiNnZfMTJ6amM4ZmN3&hl=en|Power Point]]
  
 main.cpp main.cpp
Line 23: Line 25:
 ===== Practice ===== ===== Practice =====
  
-Compute the range of the projectile.+==== Test 1 ==== 
 + 
 +Compute the range of the projectile.  Using a function to compute the following algorithm, ask the user to input angle and the velocity of the projectile. 
 <code> <code>
 +#include <math.h>
 +
 angleR = angleD * Pi / 180.0; angleR = angleD * Pi / 180.0;
 range = sin(2.0 * angleR) * pow(velocity, 2) / gravity; range = sin(2.0 * angleR) * pow(velocity, 2) / gravity;
 +</code>
 +
 +==== Test 2 ====
 +
 +Guess a number between 1 and 100.  First generate a random value between 1 and 100.  Have the user enter a number that is between 1 and 100.  Then create a function that will check if the number is to high, to low, or is the correct number.  Then tell the whether the number entered was to high, to low, or correct.  If the number entered was to high or to low, have the user enter another number.
 +
 +<code>
 +#include <stdlib.h>
 +#include <time.h>
 +
 +/* initialize random seed: */
 +srand( time(NULL) );
 +
 +/* generate secret number: */
 +randomValue = rand() % 10 + 1;
 </code> </code>
wiki/ideas/teaching.1271941097.txt.gz · Last modified: 2020/11/19 14:21 (external edit)
Back to top
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0