Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7.  
  8.     int numero;
  9.  
  10.     cout << "Escribe un número: ";
  11.     cin >> numero;
  12.     for (int numero=1; numero < 10 && numero > 0; numero ++)
  13.     {
  14.     if (numero%!numero==0)
  15.         cout << "No es un numero primo" << endl;
  16.     else
  17.         cout << "Es un número primo" << endl;
  18.     }
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement