Getting Rid Of Asterisks

Mar 19, 2014

This is my code so far which is correct my only problem is that I have to make it so there doesn't become more than 50 asterisks on a line and I don't know how to do that I know the code is something divided by 50 but I dont understand where I would put it.

so instead of this

************************************************** ******************(pretend it was 100 asterisks)
it would be
****************************************(x<50 asterisks or 42)

import java.util.*;
public class Graph {
private int [] counter;
public Graph(int x) {
counter=new int[5];

[Code] ....

View Replies


ADVERTISEMENT

Bar Chart With Asterisks

Oct 12, 2014

I need to make a loop that prints out a certain number of asterisks, depending on the random number generated (includes 0-24, not including 25). I'm just in basic java programming and am stuck on this task.

These are the directions given to me:

Write a loop to do the following tasks 10 times:
-Generate a random number in the range of 0 to 24 and store in an int variable named: score
-Write loop to print a bar of asterisks proportional to the value in score :

For example: , if value stored in score is 8, the bar chart should like as follows: (value of score spaced by a tab ( ) and a series of 8 asterisks in one line)
8 ********
//end of the loop

I've tried looking for other questions like this, but this one is a random number, with no input. Yes, I know there are easier ways, but my professor is extremely picky with everything.

This is what I have so far:

public class PA5LoopsA {
public static void main(String [] args) {
//Declare variables
int score;
//Generate random number between 0 and 24
score = (int) (Math.random() * 25);

[Code] ....

Clearly, none of my formatting went through...yes, I know how to space everything out!

View Replies View Related

Bar Chart With Asterisks?

Oct 19, 2014

Here is the assignment instructions:

Overview: Use the Eclipse Java environment to create and test a program using methods that will display a bar graph.

Specifics: This assignment is an extension of the Module 5 activity, the first bar chart (asterisk) display program. You should also make use of the Bar Chart printing program of Chapter 6 (Fig. 6 in the textbook, p. 217).

Your program should use methods to accept input from the keyboard, store it in an array, and use that data to display a bar graph.

Pseudocode for the program might look like the following.

Main
declare an array of integers
get the number of asterisks in each bar
print the bar graph
get the number of asterisks in each bar
declare a Scanner input object
declare an array to fill and return

[code]....

Problem is I cannot get it to display the number of asterisks I enter as input.

View Replies View Related

How To Convert Integer To That Many Asterisks

Jan 22, 2015

int a = 5;

//how do I convert a to 5 asterisks '*'?

When I do System.out.println(a); I want there to be 5 asterisks '*****'

View Replies View Related

Displacing A Shape Made Of Asterisks

May 5, 2014

I'm making a program that prints arrows of varying tail length, head width, and displacement.The shape algorithms are working properly, but the displacement isn't working. The first arrow has zero displacement, and the second one is supposed to be bigger and start the print at 10 spaces right and 5 spaces down from the default, but it's not working. I tried changing the displacement settings of the first arrow, and no changes happened, so I know that the positions aren't registering properly in general. How to pass the xAdj and yAdj (displacement) values? I think I have the empty space formula set up, but it's still not running.

Driver:
public class Driver
{
//default values
public static final int Arrow_Default_xAdj = 0;
public static final int Arrow_Default_yAdj = 0;
public static final int Arrow_Default_tail = 5;
public static final int Arrow_Default_width = 5;

[code]...

View Replies View Related

Draw Square With Asterisks (for Loops)

Apr 21, 2015

So currently I'm trying to learn how to draw a square with asterisks based on the input I give for it's sideLength.

So if I have a Square(5) it should draw a 5x5 looking like this:

*****
*****
*****
*****
*****

but then in the main method, it should draw multiple squares of given sizes, so say 5, 6, and 7. Making a square for each of the given numbers. This is what I currently have so far ....

class Square {
int sideLength; Square( int size ) {
sideLength= size;
} int getArea() {
return sideLength * sideLength;

[Code] ....

View Replies View Related

Printing Asterisks Shape In Java

Mar 17, 2014

I am supposed to Write a program that prints a shape similar to the following shape. Maximize use of loops and minimize use of print statements.

.....*
....**
...***
..****
...***
....**
.....*

(without the "...")(i couldn't get it to stay in shape)

This is what i got so far:

Java Code: package assignment7;

public class Exercise3
{
public static void main (String[] args)
{
for (int count =0; count < 4; count++)
{
for (int j=0; j < count+1; j++)
[Code] ....

Tthis compiles to:

*
**
***
****
**
*

How do i center it to create the shape?

View Replies View Related

Creating Shape - How To Deal With Blanks And Asterisks

Mar 16, 2014

I need to create this shape:

*" "*" "*
" "*" "*" "
" "" "*" "" "

using loops. How to deal with the blank and asterisks? Its just don't work correctly for me...

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved