[Algorithm/C] Project Euler. Largest prime factor The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 600851475143 ? #include int main(int argc, char* argv[]){long long number = 600851475143;int i; for(i=2; i Computer Science/Algorithm 2017.12.02