Search found 1 match

by enib
Tue Apr 04, 2006 6:08 pm
Forum: Volume 1 (100-199)
Topic: 100 - The 3n + 1 problem
Replies: 1394
Views: 318290

mine works.. dunno why I GET WRONG ANSWER..

eni@madgeek:~/Documents/projects/programim/C/problems$ cat 100.c
/*****************
* problem no. 100
* Programmed by:
* Eni Bundo
* ****************/

#include <stdio.h>
#define small(x, y) ((x<y) ? x : y)
#define max(x, y) ((x>y) ? x : y)
int main ...

Go to advanced search