All pastes #2105920 Raw Edit

Untitled

public text v1 · immutable
#2105920 ·published 2012-01-25 05:15 UTC
rendered paste body
#include <iostream>
using namespace std;
int main()
{
	int gravity;
	double time, distance;
	gravity = 32;
	cout << "Press return after entering a number.\n";
	cout << "Enter the time it takes the object to fall in seconds:\n";
	cin >> time;
	distance = (gravity*time*time)/2;
    cout << "If the object fell for ";
    cout << time;
    cout << " seconds then it traveled ";
    cout << distance;
    cout << " feet:\n";
    return 0;
}