3
votes
1answer
120 views

Inconsistent results (C)?

In this program, I have coded in several formulae and for one formula I am getting inconsistent results, albeit it's the same code and inputs for every run. The function in question is "WqFormula". On ...
3
votes
3answers
101 views

Why do I get different results only 1% of the time?

I am trying to truncate everything past the hundredths decimal. (13.4396 would be 13.43) Sholdn't it always or never work? I have this formula that works 99%: input = (( (double) ((int)(orgInput ...
3
votes
0answers
162 views

Calculate the length of lines traced over an image [closed]

Ok, I've been struggling with this problem since a long time. I have some images I need to trace and extract some values from their pixels. The thing is I need the length of those lines over the image ...
0
votes
1answer
138 views

Programming style and number of variables and correct formula for the program and to test the programm for a lot of conditions

Look at the code #include <stdio.h> #define TAX 5 /* Defines percentage of tax for the year */ int main(void) { float amount; float taxes; float total; printf("Enter the ...
7
votes
13answers
1k views

How many digits in this base?

The problem is to derive a formula for determining number of digits a given decimal number could have in a given base. For example: The decimal number 100006 can be represented by 17,11,9,8,7,6,8 ...