Advertisement
wagner-cipriano

Função que soma 3 números

May 12th, 2020
1,195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.08 KB | None | 0 0
  1. float soma3n(float a, float b, int c) {
  2.   float S;
  3.   S = a + b + c;
  4.   return S;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement