Advertisement
Josif_tepe

Untitled

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