This is me venting Community Center Meta DaniWeb by Dani … able to, given recent health challenges). I've made, on average, 700-1000 code check-ins annually for the past ten… Re: How long does it take to develop a game Programming Game Development by kishanrg … of the development team, and the resources available. However, on average, it can take anywhere from six months to several years… Re: This is me venting Community Center Meta DaniWeb by Reverend Jim It's hard for me to imagine that all of the pleasure I've gotten out of Daniweb, the challenges, the insights, the friendships since I joined in 2010, are all dependent on the largesse of just one very talented person. I, for one, appreciate all you have done, particularly considering your current health issues. If you feel unappreciated then … Re: This is me venting Community Center Meta DaniWeb by Reverend Jim Also, in non-computing over the years I have heard comments like "if only I hadn't stopped for coffee I would have missed that accident, or several other variations. The thing is you never know what would have happened if you had made different decisions. Certainly making a different decision may have resulted in things being better. Or they … Re: This is me venting Community Center Meta DaniWeb by jkon Dani , yes I also believe that you are responsible for the decline of DaniWeb .... BUUUT that was many years ago. We all foreseen the decline of "forums" back in early 2010's , there were many alternatives of what to do , and I strongly believe that you choose the wrong one. I will not repeat what you did or what you could be done … Re: This is me venting Community Center Meta DaniWeb by Dani > what was missing was a programming hub of news / forum / interviews I have always been a strong proponent of having editorial (news, tutorials, interviews, etc.) complement the user-generated forum discussions. In the past, well over 50% of our gross revenue from advertising went straight into paying for staff writers. IMHO we used to have … The Rise of AI Scams: Deciphering Reality in a World of Deepfakes Community Center by Johannes C. … AI-facilitated scams. But what does this mean for the average person? How do deepfakes redefine digital deception? And how can… nutshell, regulations will continue to make it difficult for the average user to generate funny pictures of celebrities, but they may… Re: Improve HAVING BY performance Programming Databases by Dani … 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 rows with… Re: Improve HAVING BY performance Programming Databases by Dani I'm too exhausted for an in depth explanation right now but 90% of web development is optimizing for performance. The average DaniWeb page takes anywhere from 80ms up to 250ms to load the HTML (when dealing with low network latency), depending on the type of page, so shaving 50ms off of that is a huge win. Re: Improve HAVING BY performance Programming Databases by Biiim … access speed increases (HDD is very bad at 6.3ms average access time, SSD is 0.14ms) - and now an M2… Re: Improve HAVING BY performance Programming Databases by Biiim … on an old HDD hard drive, it was a pretty average linux server). There is definitely something very wrong with your… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … about the status of my laptop. I was told the average wait time was one minute. Fifteen minutes later I was… Re: average(help) Programming Software Development by andreas.petrou.967 …[arr_size],int history[arr_size] ,int physics[arr_size],int average[arr_size], int stud_num); //********************************************************* void f_name_s(char name[…+1<<": "; cin>>physics[count]; average [count] = (math[count] + history[count] + physics[count]) /3 ;… Average help Programming Software Development by rlwright12 …], int scores[40][6], int &counter); //char assignGrade(int average); //Definition of main function void main() { headerfn(); //call to…}//end of outer for }//end of inputfn //***************************************************************** int calcAverage(float average[40][6], string names[40][2], int scores[40][6… Re: Average help Programming Software Development by WaltP …;8; col++) //// start a loop.... why 2 to 8? { return average[40][6]; //// first thing done in the loop is return… an //// illegal value (last value is average[39][5]) cout<<average; //// never reaches this line } int Ptotal[40… Re: Average help Programming Software Development by rlwright12 …;8; col++) //// start a loop.... why 2 to 8? { return average[40][6]; //// first thing done in the loop is return… an //// illegal value (last value is average[39][5]) cout<<average; //// never reaches this line } int Ptotal[40… Average Programming Software Development by jonny93 … to create a simple code that can compute the average of a set of numbers read in using a… scanner. import java.util.Scanner; public class Average { public static void main(String[] args) { double number = 0… should exit out of the loop and compute the average and print it like so. But when I enter… Re: Average? Programming Software Development by HowBil …Ancient Dragon;516934]think about how would you calculate the average galles per k with pencil & paper. Given the …and gallons its just simply [icode]average = distance/gallons[/icode] If you want the average over several tanks of gas then …) math.[/QUOTE] Thanks for replying, I know about the average.. I just don't know how to get the sum… Average? Programming Software Development by HowBil …someone could help. I need to calculate the average amount of gallons used per km driven but…include in my code(below) to include an average? I'd appreciate any advice you could provide…using namespace std; int main() { double gallons; double average;// not used yet double distance; double distancegallon; cout<… Re: Average? Programming Software Development by Ancient Dragon think about how would you calculate the average galles per k with pencil & paper. Given the distance and gallons its just simply [icode]average = distance/gallons[/icode] If you want the average over several tanks of gas then sum up all the gas you bought then do the division. This is just 5th grade (or earlier) math. average Programming Software Development by newprogrammer12 …`import java.util.Scanner; import java.text.DecimalFormat; public class Average { public static void main(String[]args) { int count … new DecimalFormat("##.00"); System.out.println("\nThe Average is "+ twoDP.format((double)(total)/count)); } else… Re: average Programming Software Development by bumsfeld … you could approach this project: [code=python]# exploring recursion def average(qq=[]): """ using empty list as default will…avg = sum(qq)/len(qq) print "average =", avg # the function calls itself (recursion) average() except: # actually anything but number will… Re: average Programming Software Development by Kabooom … to make a program that will, for example, find the average of 3+4+5 and then later could have 6… of three numbers. When adding a new number to this average it would take the number of numbers (3) and multiply… it by the average (4), then add in the six and divide by the… average Programming Software Development by biggz i need to build a recursive function which calculates the average of specific numbers entered ... so its fine till now but ... … Average Programming Web Development by web3 I made star voting script and i was wondering how to display average result? Re: Average Programming Web Development by network18 [QUOTE=web3;1045106]I made star voting script and i was wondering how to display average result?[/QUOTE] The matter is not clear with just this, until the code is seen. at least your queries first average(help) Programming Software Development by andreas.petrou.967 How to find this average for this programm read 3 grades for students #include <… Re: average array Programming Software Development by mathgirl … 0; i < n; i++) { deviation = a[i] - average; sum += deviation * deviation; } return sqrt(sum/ (n - 1…double grade[6]; int i, total = 0; double average; cout.setf(ios::fixed); cout.setf(ios::showpoint); …within that range. It should compute the average grade and determine the equivalent letter grade… Average for ArrayList with user input Programming Software Development by hwalsh …+ userName + ". You can find the average of your test grades."); printWelcome(); } } …} { printWelcome(); } } /** * Print C calculates average stored from arraylist. * @return c */ [COLOR="… average sales Programming Software Development by bpacheco1227 …"") 'totalSales = ?????? iCounter = iCounter + 1 'average = totalSales / iCounter 'MessageBox.Show(inputSales, averageTitle, MessageBoxButtons.OK…Loop While inputSales <> String.Empty average = totalSales / iCounter MessageBox.Show(inputSales, averageTitle…