/* We need standard IO */
#include <stdio.h>
/* factor a number by John's method. */
/* Generating relation is N = q*p */
/* DN wrt q = p */
/* DN wrt p = q */
/* They don't differ in sign, so we have to run one negative,
* from a known (trival) solution. This is SLOW
*/
main () {
long n, p, q, t;
printf ("Factor a positive number by John's method\n");
printf ("N = \n"); scanf ("%ld", &n);
printf ("Factoring %ld\n", n);
if (n<1) { printf ("N must be greater than zero\n"); return 1;}
q=1; p=n; t = p*q - n;
do {
if (t<0) { t += p; q++;}
else { t -= q; p--;}
} while (t!=0);
printf ("%ld*%ld=%ld\n",p,q,n);
}
Go to ...
This page is http://www.cc.utah.edu/~nahaj/factoring/johns.c.html
© Copyright 2003 by John Halleck, All Rights Reserved.
This snapshot was last modified on January 12th, 2009
And the underlying file was last modified on December 12th, 2005