Advertisement
piffy

FunctionRefactoring-Goal

Nov 27th, 2019
594
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. /** FUNCTION REFACTORING - GOAL **/
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     float x,y;
  10.     x=leggi_numero();
  11.     y=quadrato_di(x);
  12.     stampa_valore_di(y);
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement