Search:

Type: Posts; User: DoctorBoris

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    732

    Re: Java Pattern

    Thanks for sticking with me, and answering my maybe silly questions :cool:

    I've tried to change the values of j and i, but I can't seem to find the right combination to start with two stars and...
  2. Replies
    5
    Views
    732

    Re: Java Pattern

    I've run this so far :
    public class Lab1
    {
    public static void main(String[] args)
    {
    for(int i = 5; i > -5; i--)
    {
    for(int j = 0; j < i; j++)
    {
    ...
  3. Replies
    5
    Views
    732

    Java Pattern

    Hi, im wondering if someone could help me understand ho I can make this diamond pattern:


    **

    **********
    ...
Results 1 to 3 of 3