fork download
  1.  
  2. #include<iostream>
  3. #include<vector>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.  
  10. float s; // assignment score
  11. float t; // total points worth
  12. float p; // percentage
  13. int n;
  14.  
  15. //input the number of assignments
  16.  
  17. cout << "How many assignments are there? " << endl;
  18. cin >> n;
  19.  
  20. for (int i=0; i <=n; i++)
  21. {
  22.  
  23.  
  24. //input the total points earned for assignment
  25. cout << "What is the score earned for this assignment? ";
  26. cin >> s;
  27.  
  28.  
  29. //input the number of points assignment is worth
  30. cout << "How many points was the assignment worth? ";
  31. cin >> t;
  32.  
  33. //calculate percentage
  34. p = (s / t)*100;
  35. }
  36.  
  37.  
  38. //output score
  39.  
  40. cout.setf(ios::fixed);
  41. cout.setf(ios::showpoint);
  42. cout.precision(2);
  43. cout << "Total score: " << p << "%"<< endl;
  44.  
  45. return 0;
  46. }
Success #stdin #stdout 0s 3460KB
stdin
2
100
2
20
8
stdout
How many assignments are there? 
What is the score earned for this assignment? How many points was the assignment worth? What is the score earned for this assignment? How many points was the assignment worth? What is the score earned for this assignment? How many points was the assignment worth? Total score: 250.00%