Advertisement
any15015

Guia4_labo_Ej12

Sep 5th, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. //Nombre: Analia Leyez
  2. //TP Nº: 4
  3. //EJ Nº: 12
  4. /*Comentarios:  Un número Simonírico es un número positivo divisible por 15 y a la vez divisible
  5. por 3 pero no divisible por 6. Hacer un programa que muestre los primeros 1000
  6. números Simoníricos. El usuario no debe ingresar nada.
  7. */
  8. #include<iostream>
  9. using namespace std;
  10.  
  11. int main(void){
  12. int n=1, cSimonirico=0;
  13. while(cSimonirico<1000){
  14.     if(n%15==0 && n%6!=0){
  15.         cout << n << endl;
  16.         cSimonirico++;
  17.     }
  18.     n++;
  19. }
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement