One shortcoming of rapid application development (RAD) is a narrow focus, which might limit future development.
Answer:
The answer is "1 inch"
Explanation:
The margin is also known as space, it is the distance between the document 's text and edge. In default, its distance is 1, and it also allows you to customize, the new document, which is set to standard.
- In other words, we can say that it implies the one-inch gap between the text and each edge, which is based on your specifications.
- It also allows you to customize the margin size of the document, and other choices were wrong because it is the customize size.
import java.util.Scanner;
public class JavaApplication33 {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int total = 0;
System.out.println("Enter positive numbers (-1 to stop)");
while (true){
int num = scan.nextInt();
if (num == -1){
break;
}
else{
total += num;
}
}
System.out.println("Sum is "+total);
}
}
I hope this helps!