#include #include #include //step 1 using namespace std; int main() { cout << fixed << setprecision(4); //prompt user for eight numbers and print //out average int n1,n2,n3,n4,n5,n6,n7,n8; double average; ifstream ourInput; //step 2 ourInput.open("data.txt"); //step 3 ourInput >> n1 >> n2 >> n3 >>n4 >> n5 >>n6 >> n7 >> n8; //step 4 cout << n1 <