Skip to content
Snippets Groups Projects
Commit fc9db9cf authored by s-jdoyle4's avatar s-jdoyle4
Browse files

Answer to 8a

parent e255d6ec
Branches
No related tags found
No related merge requests found
HW8a.cpp 0 → 100644
#include <iostream>
int main()
{
using std::cin;
using std::cout;
int i; double x;
x=1;
for( i=1; i<5; i++ )
x = i+x / 2.0;
cout << "x is" << x;
return 0;
}
HW8a.out 0 → 100755
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment