Advertisement
Soverein

Untitled

Jan 31st, 2021
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if (max < a)
  2. {
  3. max = a;
  4. }
  5. if (max < b)
  6. {
  7. max = b;
  8. }
  9. if (max < c)
  10. {
  11. max = c;
  12. }
  13. if (max < d)
  14. {
  15. max = d;
  16. }
  17. cout << "max" << endl;
  18. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement