mborm.net

Ein Computerprogramm tut was Du schreibst, nicht was Du willst.

Problem 3 auf projecteuler.net

Hier mal wieder eine weitere Project-Euler Lösung. Dieses Mal für das Problem 3 und wieder in der Programmiersprache C.


gcc -Wall -march=native -mtune=native -O3 -std=c11 -ffast-math prob3.c -lm -o prob3 && time ./prob3
Result: 6857

real 0m0.007s
user 0m0.007s
sys 0m0.000s

Hier der Code:

Veröffentlicht am 18. Dezember 2015 von admin in C, Programmierung, projecteuler