You are here: DEVPPL Forum Programming Java Forum
NOTIFICATIONS
54.087
MEMBERS
15.684
TOPICS
62.255
POSTS
  562
FLASH GAMES
7.740
TUTORIALS
 

Login

E-mail:
Password:

problem with assignment

0

Loading

problem with assignment

Postby Tiggz » Wed Feb 06, 2008 9:55 am

Hi all i am currently doing an assignment and struggling like mad all i need to do is create a right angled triangle out of asterisks such as

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

it has the size set to 5 and the orientation set to up all i need to know is how to get the public instance method called generate row to work correctly any help would be appreciated i am drowning i cannot get to grips with this at all.

the code for the method is below it should use a loop and concatenation to produce the triangle any help on this would be grateful.

import ou.*;

/**
* Class Triangle - instances model triangles as rows of asterisks
*
* M255 Course Team
* Version 1.0
*/
public class Triangle
{
/* instance variables */
int size; // the size of the triangle; an integer between 2 and 10 inclusive
String orientation; // either "up" or "down"
String asterisk;

/**
* Constructor for objects of class Triangle.
*/
public Triangle()
{
super();
this.size = 5;
this.orientation = "up";


}



/* instance methods */

/**
* Return the orientation of the triangle.
*/
public String getOrientation()
{
return this.orientation;
}

/**
* Return the size of the triangle.
*/
public int getSize()
{
return this.size;
}

/**
* Generates a row of Asterisks
*/
public String generateRow()
{
asterisk = "";
aSize = Integer.parseInt(return this.size);
for (int num = 1; num <= asize; num++)

asterisk = asterisk + "*";

System.out.prinln(asterisk);
}

}
Tiggz
 
Reputation: 0
Posts: 5
Joined: Fri Mar 02, 2007 1:50 pm
Location: Sheffield, UK
Highscores: 0
Arcade winning challenges: 0

problem with assignment - Sponsored results

Sponsored results

Login to get rid of ads

 

^ Back to Top