orlandoju

Ejer1_tp3

Apr 6th, 2022
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. //Nombre:
  2. //TP N°:
  3. //EJ N°:
  4. // Comentarios:
  5.  
  6. #include <iostream>
  7. using namespace std;
  8.  
  9. int main(void){
  10.     int  i;
  11.     for (i = 1; i <= 20; i+= 3)
  12.     {
  13.         cout<< i<<endl;
  14.     }
  15.  
  16.  
  17.  
  18.     return 0;
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment