aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee1301/wk3/lab3/primeFactor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'OLD/ee1301/wk3/lab3/primeFactor.cpp')
-rw-r--r--OLD/ee1301/wk3/lab3/primeFactor.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/OLD/ee1301/wk3/lab3/primeFactor.cpp b/OLD/ee1301/wk3/lab3/primeFactor.cpp
deleted file mode 100644
index 093a0be..0000000
--- a/OLD/ee1301/wk3/lab3/primeFactor.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <iostream>
-#include <cmath>
-using namespace std;
-
-void factorFinder (unsigned long long n) {
- unsigned long long i=2;
- while (pow(i,2)<=n) {
- if (n%i==0) {
- cout << i << "*";
- n/=i;
- } else {
- i++;
- }
- }
- if (n>1) {
- cout << n << endl;
- }
-}
-
-int main () {
- unsigned long long n;
- cout << "Input a positive integer: ";
- cin >> n;
- cout << "Factors: ";
- factorFinder(n);
-}