From f99d7e24a3d36adbc1ea831bb6905d75b994b355 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Mon, 11 Feb 2019 20:25:35 +0000 Subject: Fix --- misc/test.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'misc') 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 +} -- cgit v1.2.3