Advertisement
idsystems

CPP_Practica53_Primo

Mar 13th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. // Program: primo.cc
  2. // Author:  Yoan Pinzon
  3. // Date:    Agosto 30, 2006
  4.  
  5. #include <iostream>
  6.  
  7. using namespace std;
  8.  
  9. int main(){
  10.    int n, c=0;
  11.  
  12.    cout << "Entre n: "; cin >> n;
  13.    for(int i=2; i<=sqrt(n); i++) if( n%i==0 ) c++;
  14.    cout << n << (c?" NO":"") << " es primo" << endl;
  15.  
  16.    return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement