Answered step by step
Verified Expert Solution
Question
1 Approved Answer
import java.util.Scanner; public class DrawRightTriangle { public static void main ( String [ ] args ) { Scanner scnr = new Scanner ( System.in )
import java.util.Scanner;
public class DrawRightTriangle
public static void mainString args
Scanner scnr new Scanner
System.in;
char triangleChar;
int triangleHeight;
System.out.printlnEnter a character:";
triangleChar scnr next charAt;
System.out.printlnEnter triangle height:";
System.out.println;
triangleHeight scnrnextInt ;
int counter ;
for int ; triangleHeight;
String currentLine;
forint ; counter;
currentLine triangleChar ;
System.out.printlncurrentLine;
counter;
Input:
My WRONG output:
Enter a character:
Enter triangle height:
EXPECTED OUTPUT:
PLEASE HELP ME REMOVE THE WHITESPACE AT THE BEGINNING OF EACH LINE. THANK YOU SO MUCH!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started