///Alexander Sage
//Hw7
//Date: 11/30/11
//Purpose: to initialize variables

#include <iostream>
using namespace std;

void probINTconds(double& t, double& tstop, double& dt, double y[])
{
t = 0.0;
tstop = 2.0;
cout << "Enter timestep size:"<< endl;
cin >> dt;
 
y[0] = 1.0; 
y[1] = 0.0; 
y[2] = 0.0; 
y[3] = 6.29; 
}