aboutsummaryrefslogtreecommitdiffstats
path: root/misc/test.cpp
blob: 493114aba622597fc59e0b202825e41939e80626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;

int main () {
  unsigned long long x;
  int a;
  cout << "Enter a number:";
  cin >> x;
  unsigned long long i = (x-1);
  
  for (i=x; i>1; --i/*--*/) {
    if (x%i==0 && x!=i) {
      cout << "Not prime!" << endl;
      a=1700;
      break;
      return 3;
    }
  }
  
  if (a!=1700)
  cout << "Prime!" << endl;
  return 0;
}