Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int mainp(){
  4. //get three scores
  5.  
  6. double s1, s2, s3;
  7. cout << "Enter three scores: ";
  8. cin >> s1 >> s2 >> s3;
  9.  
  10. cout << "your first score is: " << s1 << endl;
  11. cout << "your second score is: " << s2 << endl;
  12. cout << "your third score is: " << s3 << endl;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement