Advertisement
wagner-cipriano

Print 3 numbers

May 12th, 2020
1,182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. void imprime(float n1, float n2, float n3) {
  2.     cout << "Os 3 números ordenados são : "
  3.          << n1 << ", " << n2 << ", " << n3 << endl;
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement