Answer:
import java.util.Scanner;
public class num10 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the numbers to add up. enter 999 to stop");
int num = in.nextInt();
int sum = 0;
while (num!=999){
sum = sum+num;
System.out.println("Enter the next number");
num = in.nextInt();
}
System.out.println("The sum is: "+sum);
}
}
Explanation:
The application is implemented in Java
A while loop is used to continously prompt user for inputs. The condition of the while loop is while (num!=999)
When the number 999 is entered, it displays the sum which is initialized to 0
A . Pop
D . K-popp I guess
Answer:
Computer network.
Since it is 2 or more computers connected together.
Answer:
A computer is a machine made up of parts for the hardware and software. Based on the instructions given, a computer receives data through an input unit and sends it back through an output system after it processes the data. The input devices of a computer are used to get the input data.
There is always a risk of you losing files and then you may have to pay for it depending on what services you use.