Answered step by step
Verified Expert Solution
Link Copied!

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 main(String[] args){
Scanner scnr = new Scanner(
System.in);
char triangleChar;
int triangleHeight;
System.out.println("Enter a character:");
triangleChar = scnr. next (). charAt(0);
System.out.println("Enter triangle height:");
System.out.println();
triangleHeight = scnr.nextInt ();
int counter =1;
for (int i=0; i triangleHeight; i++){
String currentLine="";
for(int j=0; j counter; j++){
currentLine += triangleChar +"";
}.
System.out.println(currentLine);
counter++;
}.
}
-------------------
Input: %3
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!
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 23rd International Conference Dexa 2012 Vienna Austria September 2012 Proceedings Part 1 Lncs 7446

Authors: Stephen W. Liddle ,Klaus-Dieter Schewe ,A Min Tjoa ,Xiaofang Zhou

2012th Edition

3642325998, 978-3642325991

More Books

Students also viewed these Databases questions

Question

=+5. What does this public think about your organization?

Answered: 1 week ago

Question

Explain the nature of human resource management.

Answered: 1 week ago

Question

Write a note on Quality circles.

Answered: 1 week ago

Question

assess the infl uence of national culture on the workplace

Answered: 1 week ago