diff options
Diffstat (limited to 'misc/test.cpp')
-rw-r--r-- | misc/test.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/misc/test.cpp b/misc/test.cpp index 3deb381..b14f99a 100644 --- a/misc/test.cpp +++ b/misc/test.cpp @@ -5,21 +5,20 @@ using namespace std; int main () { unsigned long long x; - int a; 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=1700; + a=1; break; return 3; } } - if (a!=1700) + if (a!=1) cout << "Prime!" << endl; return 2; -}
\ No newline at end of file +} |