Advertisement
Josif_tepe

Untitled

Mar 23rd, 2025
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void pecati(int x) {
  5.     cout << x << endl;
  6. }
  7.  
  8. int main() {
  9.     pecati(10);
  10.     pecati(15);
  11.     pecati(20);
  12.    
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement