Asterisks to represent Grades Programming Software Development by piecykoos … bar can be a horizontal row of asterisks, such that the number of asterisks in a row is proportionate to the percentage… category. For example, let on asterisk represent 2%, so 50 asterisks correspond to 100%. Mark the horizontal axis at 10% increments… asterisks square Programming Software Development by Royalwolf … exercise asked to print a square using asterisks. i am able to create a asterisks solid square and colde is as follows… Re: Asterisks to represent Grades Programming Software Development by Clinton Portis … array, use another loop to display the correct number of asterisks [/LIST] You seem like an intelligent individual.. give this a… Re: Asterisks to represent Grades Programming Software Development by piecykoos …++) { cout << "*"; } // print the grade after the asterisks cout << " GRADE " << array[loopcounter… Re: Asterisks to represent Grades Programming Software Development by Clinton Portis You are probably displaying too many asterisks. Each asterisk is supposed to represent 2% as per assignment … Re: Asterisks to represent Grades Programming Software Development by piecykoos …++) { cout << "*"; } // print the grade after the asterisks cout << " GRADE " << array[loopcounter… coverting sales to asterisks Programming Software Development by SLMQC ….Empty Then If IsNumeric(strInput) Then intSales = CInt(strInput) 'Calculate Asterisks intTotalAsterisks = CInt(intSales / intASTERISK) End If 'If sales are less… Re: coverting sales to asterisks Programming Software Development by tinstaafl … As String = "" 'Asterisks Dim intTotalAsterisks As Integer '# Asterisks to display Dim strInput As String =…While 'Store sales intSales = CInt(strInput) 'Calculate Asterisks intTotalAsterisks = intSales / intASTERISK 'If sales are less … Re: coverting sales to asterisks Programming Software Development by SLMQC I found an error in my typing that was causing the "100", but no other changes. When I run the program and enter the sales for the first store, the program executes listing all 5 lines as store #1. The other issues is that one too many asterisks appear. Ex $500 = 6 asterisks, $1000 = 11 asterisks. Re: coverting sales to asterisks Programming Software Development by SLMQC …String = "" 'Asterisks Dim intTotalAsterisks As Integer '# Asterisks to display Dim strInput As …While 'Store sales intSales = CInt(strInput) 'Calculate Asterisks intTotalAsterisks = CInt(intSales / intASTERISK) 'If sales… Quick asterisks question in Java Programming Software Development by DallasFan3 … should clear the screen and display a series of asterisks to represent the letters to be guessed. Then, display…each letter in the chosen word. When displaying the asterisks, make sure you place a space between each asterisk… information about clearing the screen. Two lines below the asterisks, that should show the user the number of guesses… Help with a C++ Asterisks program Programming Software Development by perseus150 …gt; figType; // Creates the square figure out of asterisks (S) if(figType == "S") … } }[/I] // Creates the rectangle figure out of asterisks (B) if(figType == "B") { cout… Stumped on C++ code asterisks Programming Software Development by Himerz … from a point in my code. I am building an asterisks tree and I managed to get that part done, but… assignment. 1. And the line numbers to the asterisks. 2. Limit the asterisks tree to only 30 lines 3. If user does… need help with asterisks program Programming Software Development by bbballin i have to write a program where i input two positive integers (L and H) which are both less than 21. the program then prints out a box of solid asterisks wit L horizontal asterisks and H vertical asterisks. i dont really know where to start... can someone tell me? Re: Help with a C++ Asterisks program Programming Software Development by VernonDozier …]I am having trouble creating an inverted half-square out asterisks. The problem requires three nested for-loops, I believe, but… Re: Stumped on C++ code asterisks Programming Software Development by Himerz Oh... I forgot to how the asterisks tree should look like 1____* 2___*** 3__***** 4_******* 5********* (without the underscores) Cheers Re: Stumped on C++ code asterisks Programming Software Development by Himerz … to make my lines numbered and displayed vertically with the asterisks to its side. 1____* 2___*** 3__***** 4_******* 5********* "each… Re: Stumped on C++ code asterisks Programming Software Development by Comatose …++) { cout << " "; } // Display The Required Number Of Asterisks for (int i = 1; i < counter; i++) { cout <… Diamond of asterisks using 2D array Programming Software Development by Grn Xtrm … odd number from 1-9 and outputs the diamond of asterisks as follows [code] user enters 5 _ _ _ * _… to fill the 2d array with the appropriate number of asterisks. I wrote a function to print the array: [code=c… C++ Math Challenge(Circle in Asterisks) Programming Software Development by restrictment … common questions on creating squares and hollow squares out of asterisks in C++, but how about creating a program that prints… out a circle in asterisks? Obviously this would look like an oval due to line… Re: Need Help Printing Histogram Asterisks Programming Software Development by BrownSuga ok to my understanding the asterisks are suppossed to print during this for loop and I am not getting any asterisks can anyone help me?? for(i=0; i<numofAsterisks ; i++) { //rollSpace += "*"; System.out.print("*"); Need Help Printing Histogram Asterisks Programming Software Development by BrownSuga … rest of my program but I can not get the asterisks in my histogram to print can you help?? Thanks In… pyramid using asterisks x] Programming Software Development by kyumi419 … conditional statements.. problem is making a [I]pyramid[/I] using asterisks. for example, if the user input 6, that would be… Recursive method involving asterisks! Programming Software Development by sselwyn … recursive method to print an increment of a number of asterisks specified. triangle(5) would print this: * ** *** **** ***** However, the code I… trying to place asterisks but i cant? Programming Software Development by mytime19 I am trying to draw stars/asterisks but i can't. Any idea? [CODE] import java.io.*; … Creating rows of asterisks??? Programming Software Development by wakesin … to create a program that will print out rows of asterisks as tall as defined by the user. [CODE]For example… Re: Creating rows of asterisks??? Programming Software Development by VernonDozier … to create a program that will print out rows of asterisks as tall as defined by the user. [CODE]For example… Re: Creating rows of asterisks??? Programming Software Development by packetpirate You people are over-analyzing this. All he needs to do is use IOMANIP. He should use a for loop to print however many asterisks are specified to a line, aligned to the right after he sets a width for each row. Then he should fill in the blank spaces with a " " character. Re: Creating rows of asterisks??? Programming Software Development by VernonDozier …;. If the 5, 4, and 1 represent the number of asterisks in a row, it doesn't make sense at all… Re: Creating rows of asterisks??? Programming Software Development by Duki …. He should use a for loop to print however many asterisks are specified to a line, aligned to the right after…