Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include "stdafx.h"
  3. using namespace std;
  4.  
  5. void showSquare(int);
  6.  
  7. int main()
  8. {
  9. int value;
  10. int total;
  11. cout << "Square a number." << endl;
  12. cout << "Enter a number: " << endl;
  13. cin >> value;
  14. cout << "The square is " << total << endl;
  15. return 0;
  16. }
  17.  
  18. void showSquare(int);
  19. {
  20. total = value * value
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement