let c=number of components
b=base charge per hour (computed elsewhere)
h=hours of work
s=surcharge
** is the exponential operator (for FORTRAN fans)
Total = b*h + b**c + s
s=$1000*[number of objections client makes to this quite reasonable fee]
It sounds like we need a separate AI to calculate the fee....
bradfordmiller my word another person on the planet that knows what ** means!! ~~ Cris H. BTW there is no exponential operator with out the lib but I need to square a number so i do // #define SQ(a) ( a x a ) // which will square any number. I may as get pi our little friend out of the way while im on this rant! To get pi we use arctan, so #define PI 4*atan(1) // now this way 4*atan(1) is substituted in line by the prepossessor. But I don't want to calculate it the time so what I do is this: double Pi = PI; // now Pi takes the value of pi ~~ Cris H.