Answered step by step
Verified Expert Solution
Question
1 Approved Answer
plz use java Assume we have already defined a variable of type int called num with the following line of code: int num = ???;
plz use java
Assume we have already defined a variable of type int called num with the following line of code: int num = ???; // 'num' can have any int value TASK: Print a centered triangle with num asterisks (*) on the bottom row, num - 2 asterisks on the next bottom row, ..., and 1 asterisk on the top row, where the triangle is surrounded by hyphens (-). You can assume that num is odd and is at least 3. EXAMPLE: If num is 5, the resulting triangle would be the following: 1 1 * * * Sample Input: 5 Sample Output: T ***- * Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MBStep 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