Yalnızca console output veren bir C koduydu. Yanlış hatırlamıyorsam LCC ile derlemiştim. Editplus'da hızlıca bir kod yaz, derle çalıştır şeklinde gelişen ve file işlemleri olmayan bir koddu. Kodu net hatırlamıyorum ancak hemen hemen tüm projecteuler sorularını bu yöntemle çözdüğüm için böyle olduğunu tahmin ediyorum.
şöyle birşey hayal et.
#include "stdio.h"
#include "conio.h"
void main()
{
float sonuc;
sonuc = hesapKitap();
printf("%f", sonuc);
getch();
}