1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
nikdorinn [45]
2 years ago
10

3.12 LAB: Output range with increment of 5 Write a program whose input is two integers, and whose output is the first integer an

d subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: -15 10
Computers and Technology
1 answer:
Zinaida [17]2 years ago
8 0

The INPUT code of the given programme in Java would be as given below:

In this first we are taking input of two integers j and k from the user and then performing the required operations over it

import java.util.

Scanner;  public class LabProgram {    

public static void main(String[ ] args) {  

Scanner scnr = new Scanner(System.in);        

 int i,j;        

 i  = scnr.nextInt();        

 j = scnr.nextInt();        

if(i<=j) {            

int k = i;            

while (k <= j) {                

System.out.print(k + " ");                

 k = k + 5;            

 }            

 System.out.println();        

 }        

 else{            

 System.out.println("Second integer can't be less than first.");                  

}    

}

}  

Learn more about Java Programming here:

brainly.com/question/18554491

#SPJ10

You might be interested in
advance in technology have enabled more and more people to purchase computers that would have once been too expensive. which of
Akimi4 [234]
I believe it is Netbooks
3 0
3 years ago
What is one of the main sustainability benefits of using large-scale, cloud computing data centers?
uysha [10]

Cloud computing allows for large chunks of data to be stored in data centers with owners having the ability to access stored information from any devices or location using their login credentials ensuring information are safe, secure and available over a an infinitely long period of time.

  1. Sustainability involves keeping hold of something over a very long period of time.

  • When data or information are saved on online data centers which is made possible by cloud computing. Cloud computing ensures that data isn't saved on an individual's personal memory storage such as local hard drive or memory Cards where it could be lost at anytime.

  • Data is stored online in data centers where it can be accessed over a very long period of time.

Therefore, the ability to get hold of time long information is an essential and important sustainability benefit offered by cloud computing.

Learn more :brainly.com/question/24875533

8 0
3 years ago
What is the significance of the ""PCs limited"" clone (in other words how is it recognized today)
Nana76 [90]

Answer:

Lisa is the first commercial personal computer with a graphical user interface (GUI). It was thus an important milestone in computing as soon Microsoft Windows and the Apple Macintosh would soon adopt the GUI as their user interface, making it the new paradigm for personal computing.In 1985, it was the 68000 generation, the first 32-bit machines, that represented the hopes and dreams of the future. The 68000-based computers from Apple, Atari, and Commodore were fast enough to run in graphics mode all the time and use a mouse for interaction, not just a keyboard.

Explanation:

dude i tryed

4 0
3 years ago
30 points
Murljashka [212]
The answers are Library Catalog access, Simultaneous access, 24/7 availability, and database resources. No physical boundary and systems are also viable options but brick and mortar access is definetely not one.
3 0
3 years ago
The pressurization system includes _____ identical and redundant cabin pressure controllers (CPC) which regulate the opening of
Soloha48 [4]

Answer:

2

Explanation:

The pressurization system is a system within every human flown aircraft that stabilizes the pressure within the aircraft in order to provide a comfortable and safe environment for passengers. According to my research on this pressurization system , I can say that based on the information provided within the question this type of system includes 2 identical and redundant cabin pressure controllers.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

6 0
3 years ago
Other questions:
  • There are two algorithms called Alg1 and Alg2 for a problem of size n. Alg1 runs in n2 microseconds and Alg2 runs in 100n log n
    13·1 answer
  • What is the Windows command to see the IP configuration of the PC?
    15·1 answer
  • Danielle, a help desk technician, receives a call from a client. In a panic, he explains that he was using the Internet to resea
    8·1 answer
  • When the code that follows is executed, a message is displayed if the value the user entersvar userEntry = (prompt("Enter cost:"
    11·1 answer
  • "in troubleshooting a boot problem, what is the advantage of restoring all uefi/bios settings to their default values?"
    13·1 answer
  • Find the equation of a line which has 10 points the following two coordinates: (4, 0) and (3, 4)​
    13·1 answer
  • What is the function of a breadcrumb trail in a website?
    13·1 answer
  • Which is the full form of COPA​
    13·2 answers
  • A good algorithm should have which three components?
    10·1 answer
  • What is the function of ALU? <br>​
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!