subject

Convert each of the following for loops into an equivalent while loop. (You might need to rename some variables for the code to compile, since all four parts a-d are in the same scope.) // a.

System. out. println("a.");
int max = 5;
for (int n = 1; n <= max; n++) {

System. out. println(n);

}

System. out. println();

// b.

System. out. println("b.");

int total = 25;

for (int number = 1; number <= (total / 2); number++) {

total = total - number;

System. out. println(total + " " + number);

}

System. out. println();

// c.

System. out. println("c.");

for (int i = 1; i <= 2; i++) {

for (int j = 1; j <= 3; j++) {

for (int k = 1; k <= 4; k++) {

System. out. print("*");

}

System. out. print("!");

}

System. out. println();

}

System. out. println();

// d.

System. out. println("d.");

int number = 4;

for (int count = 1; count <= number; count++) {

System. out. println(number);

number = number / 2;

}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 10:00
You need a reliable network for about twenty-five computers that will be distributed across a large building. it is important that the network be relatively cheap. which topology should you use?
Answers: 1
question
Computers and Technology, 22.06.2019 17:00
The two main ways in which marketers address the competition with their strategies are by satisfying a need better than a competition and by
Answers: 2
question
Computers and Technology, 22.06.2019 22:30
What is the most popular genre of video games?
Answers: 1
question
Computers and Technology, 23.06.2019 01:40
You have a linux system that has a 1000gb hard disk drive, which has a 90gb partition containing an ext4 filesystem mounted to the / directory and a 4gb swap partition. currently, this linux system is only used by a few users for storing small files; however, the department manager wants to upgrade this system and use it to run a database application that will be used by 100 users. the database application and the associated data will take up over 200gb of hard disk space. in addition, these 100 users will store their personal files on the hard disk of the system. each user must have a maximum of 5gb of storage space. the department manager has made it very clear that this system must not exhibit any downtime as a result of hard disk errors. how much hard disk space will you require, and what partitions would you need to ensure that the system will perform as needed? where would these partitions be mounted? what quotas would you implement? what commands would you need to run and what entries to /etc/fstab would you need to create? justify your answers.
Answers: 3
You know the right answer?
Convert each of the following for loops into an equivalent while loop. (You might need to rename som...
Questions
question
Mathematics, 25.09.2019 04:30
Questions on the website: 13722367