Re: Improve HAVING BY performance Programming Databases by Dani … the rows with a price greater than $4, and then calculating an average price for each product. In the other, you…'re plucking out *all* rows, calculating an average price for each product, and then discarding the… Calculating Average and high/lowest test score Programming Software Development by aexi Calculating Average and high/lowest test score Hello, I am getting … Re: Reversing Integer, Magic Squares, and LCM problems Programming Software Development by Narue Calculating the least common multiple is trivial if you have a routine to find the greatest common divisor: [code] public int lcm ( int a, int b ) { return a * b / gcd ( a, b ); } [/code] You shouldn't have any trouble finding out the algorithm for finding the greatest common divisor, it's everywhere. :) Re: Can I have some help on storing a running total and how to exit out for each section? Programming Software Development by jonsca Calculating commission at the beginning like that will just calculate it … Re: quadratic equation Programming Software Development by Moschops Calculating a value is just that; calculation. You, the programmer, must make the decision about what to output to screen [I]and[/I] do the actual programming to make that happen. Re: C# Progress Bar and Listbox Programming Software Development by skatamatic Calculating how many files are in a directory structure (the max … Re: Calculate algorithm complexity Programming Computer Science by mike_2000_17 Calculating the complexity of an algorithm is really just a matter … Calculating file transfer time Programming Software Development by it@61@sec …; } // == Average number of buffers transferred pr. second. SnittBuff = SumBuff / DELTA; // ========================================== // == Calculating transfer time in seconds == // ========================================== for (count=0;count<=fdata… Calculating values of columns and rows according to formulas Programming Web Development by chineerat Hi! I need help calculating the summed values of a column. …]<- these are the values I am having trouble calculating[/B] <td>sum( r1c2:rNc2)<…;- these are the values I am having trouble calculating[/B] <td>sum(of above values…B]<- these are the values I am having trouble calculating[/B] </tr> </table> &… Re: Calculating file transfer time Programming Software Development by it@61@sec … a loop transferring the number of buffers from 2) before calculating and displaying the progress bar and then continuing the loop… Calculating statistics of an array of integers Programming Software Development by Ivanero … the full code so far... [CODE]//Mostafa Abdel Moez 111606 //Calculating some common statistics for an array of integers. #include <… Abdel Moez 111606\n\n"; cout<<" Calculating some common statistics for an array of integers.\n\n… Calculating Factorials Program Programming Software Development by thechampp … <= x; i++) result *= i; return result; } public static double calculating(double n, double k) { return fact(n) / fact(k); } static… Re: Calculating Factorials Program Programming Software Development by sepp2k … looking for a solution where you caclulate n!/k! without calculating n!. Note that if you expand n!/k!, it will… Calculating Disocunt rate Programming Software Development by java_starter I am having trouble calculating the discount rate in java, I have the formula and … Re: Calculating Disocunt rate Programming Software Development by java_starter This class file is calculating the amount of discount a customer receives on a purchase, … Re: Calculating Disocunt rate Programming Software Development by jwenting … you really want to increase the totalPurchase amount only after calculating the discount over that purchase? There's more wrong there… Re: Calculating Disocunt rate Programming Software Development by java_starter According to my prof, the discount rate is 20% for this class and when the program runs it should display the amount of discount and total invoice after tax including discount in the total invoice amount. I think i may got the equation wrong for the discount rate. what is the right way of calculating the discount.. any help would be good,. thanks calculating fibonacci(1000) Programming Software Development by chorei … the numbers must be up to fib(1000) and while calculating this i have to use a look up table for… Calculating A Midpoint To Rebuild A Binary Tree Programming Software Development by jacknight …+last)/2] did not work correctly. This new way of calculating a midpoint works. It's hard to explain, but drawing… calculating the difference between 2 dates Programming Software Development by victor77 Greetings!!! I need help in calculating the difference between 2 dates (the result should be like &… Calculating a "noisy input stream" Programming Software Development by ecorg … calculator in C++, although none of them give reference to calculating a noisy input stream. Any help on this issue would… Re: Calculating a "noisy input stream" Programming Software Development by ecorg For example calculating a sum of numbers e.g. 2, 4, 7, while they are in surrounded by letters and non numerical characters. So in effect just add the numbers up and ignore the other characters. Calculating Query Programming Web Development by oku Hello everyone, just got a query regarding calculating I'm building a form and depending on how you … Calculating Factorial Programming Software Development by ice661666 … far as I know that can handle the result for calculating 140! And greater “I am not sure about the number… Calculating resistance Programming Software Development by kbpszs … is what i have so far, I know its not calculating correctly and I can understand what to do in my… Re: Calculating resistance Programming Software Development by VernonDozier … is what i have so far, I know its not calculating correctly and I can understand what to do in my… Calculating Error Gradient in a Neural Network Programming Software Development by bitRAKE … on implementing a neural network, but I'm having trouble calculating the error gradient. The problem is I don't know… calculating method Programming Software Development by javaman2 … else to work on my program, i just need help calculating the overall grade and i also need it to go… calculating solar time (stime) Programming Software Development by tendolm … of the C code that I want to use for calculating solar time. This is the time based on apparent angular… Calculating num of elements in array of structure Programming Software Development by Theateist I can't understand why when I'm calculating the num of elements of 'A' in main(), so the …