
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
for Java
Note: output should in exact same format as shown in the picture.

Transcribed Image Text:Problem 1: Write a program that produces the following output using nested for loop.
******
* * * * * *
*****
*****
* ***
****
***
/////
***
**
////\\\
**
オ
Expert Solution

arrow_forward
Java Code
public class HelloWorld{
public static void main(String []args){
int i,j,k;
for(i=1;i<=7;i++)
{
for(j=7-i;j>0;j--)
System.out.print("*");
for(j=1;j<=i;j++)
System.out.print(" ");
for(j=2*(7-i);j>0;j--)
System.out.print("/");
for(j=i-1;j<2*(i-1);j++)
System.out.print("\\\\");
for(j=1;j<=i;j++)
System.out.print(" ");
for(j=7-i;j>0;j--)
System.out.print("*");
System.out.print("\n");
}
}
}
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Similar questions
- Use Java. Please see the requirements (good indentation, matching the code EXACTLY how it is below, etc.)arrow_forwardIn Java, an identifier, which can be class name or method name, is a series (string) of the following groups/types of characters: {fill/continue from 2) (1) Lower-case alphabet characters: a – z, (2) ……………..… (3) …………….…… (4) ……………... (5) ………….arrow_forwardPlease review the image below. Produce the program in C++. Upload screenshots of Code and Output, as well as the source code. 4arrow_forward
- Computer Science I need help in oop. ➢Write a simple program (use your last nameas the name of the program) in Java.➢In your program, implement user input for(and also show the output of) the following:Your nameStudent numberTwo reasons why you are taking this course(My student number ends with an even number)➢If your student number ends with an evennumber:➢Compute the number of the remaining months inthe year 2022 and add 1 to the result.arrow_forwardName:- Mit (Question-1) Note:- Please type this java code and also need an output for this given Java program.arrow_forwardjavaarrow_forward
- CODE FOR JAVA Assign variable minimumVal with the smallest value of 6 positive integers read from input. Ex: If the input is 15 75 95 80 25 50, then the output is: 15 Note: The first value read is the smallest value seen so far.arrow_forwardUnderstanding ifStatements Summary In this lab, you complete a prewritten Java program for a carpenter who creates personalized house signs. The program is supposed to compute the price of any sign a customer orders, based on the following facts: The charge for all signs is a minimum of $35.00. The first five letters or numbers are included in the minimum charge; there is a $4 charge for each additional character. If the sign is made of oak, add $20.00. No charge is added for pine. Black or white characters are included in the minimum charge; there is an additional $15 charge for gold-leaf lettering. Instructions 1. Ensure the file named HouseSign.java is open. 2. You need to declare variables for the following, and initialize them where specified: A variable for the cost of the sign initialized to 0.00 (charge). A variable for the number of characters initialized to 8 (numChars). A variable for the color of the characters initialized to "gold" (color). A variable for the…arrow_forwardPlease answer 6 and 7 as they are associated altogether. 6. The FixProgram.java below has some errors.a. Fix the errors so that the program successfully compiles and runs. class FixProgram{ public static void main(String[] args) { System.out.println('Hello World!') }} 7. Change the SampleProgram.java program below.a. So that it displays Programming is fun! Instead of Hello World! class SampleProgram{ public static void main(String[] args) { System.out.println("Hello World!"); }}arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY