Search:

Type: Posts; User: MJtechie12

Search: Search took 0.07 seconds.

  1. Re: Trying to create Triangles with Characters and Spaces

    I've now done this:

    import java.io.*;
    public class test{
    public static void main(String[] args){
    int e;
    int j;
    int k;
    String output = "";
    for...
  2. Re: Trying to create Triangles with Characters and Spaces

    Thank you! Your code works perfectly but unfortunately I need the spaces to be on the other side of the A. It would look like this except with spaces instead of underscores:
    AAAAA
    _AAAA
    __AAA...
  3. Re: Trying to create Triangles with Characters and Spaces

    The spaces are supposed to be on the left side of the characters for the output.
  4. Trying to create Triangles with Characters and Spaces

    So I am trying to create this with my program:
    AAAAAAAA
    AAAAAAA
    AAAAAA
    AAAAA
    AAAA
    AAA
    AA
    A
    I am supposed to import the number of rows...
Results 1 to 4 of 4