Table of Contents

Teaching C++

Power Point

main.cpp

#include <iostream>
using namespace std;

int main()
{
  int value = 0;
  cout << "Enter an integer: ";
  cin >> value;
  cout << "You entered: " << value << endl;
  return 0;
}

build.sh

gcc main.cpp -lstdc++ -o hello

Practice

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.

#include <math.h>

angleR = angleD * Pi / 180.0;
range = sin(2.0 * angleR) * pow(velocity, 2) / gravity;

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.

#include <stdlib.h>
#include <time.h>

/* initialize random seed: */
srand( time(NULL) );

/* generate secret number: */
randomValue = rand() % 10 + 1;
wiki/ideas/teaching.txt · Last modified: 2020/11/19 14:21 by 127.0.0.1
Back to top
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0