aboutsummaryrefslogtreecommitdiffstats
path: root/misc/test.cpp
blob: b14f99aaf359711d6d45b06e7683c60860906b95 (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
#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;

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