Guest User

Untitled

a guest
Jun 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int funcion_sin_return(int x) {
  6. int b=x+5;
  7. b*=3;
  8. }
  9.  
  10. int main() {
  11. int n;
  12. while (cin >> n) {
  13. cout << funcion_sin_return(n) << endl;
  14. }
  15. }
Add Comment
Please, Sign In to add comment