public class JavaApplication82 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
for (int w = 0; w < i; w++){
System.out.print("*");
}
System.out.println("");
}
}
}
This works for me.
A potential outcome for an author who uses a word without realizing its connotation is: A. she may write something that she does not mean.
<h3>What is
connotation?</h3>
Connotation refers to the quality, feeling or an idea which a word brings to the mind of a reader or listener, as well as its literal, dictionary or primary meaning.
This ultimately implies that, a potential outcome for an author who uses a word without realizing its connotation is that he or she may write something that she does not mean or pass across an information she didn't intend to.
Read more on connotation here: brainly.com/question/20236939
#SPJ1
Answer:
its not an assembly line
Explanation:
assembly lines have ppl who aren't experts and are taught to only do one simple part of a much much bigger thing
Answer:
Option e: The use of programmed decisions should be limited to noncritical situations.
Explanation:
A repetitive decision or routine that can be managed by developed business procedures or rules are known as programmed decisions. These kind of decisions are most often known for at certain points in a standard process, and are planned relying on recognized and easily identifiable terms. Programmed decisions generally do not demand much consideration or discussion, and can typically be automated to make certain consistency and save time for decision-makers.
So, the use of programmed decisions should not be limited to noncritical situations.
Answer:
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the number of bottles and cans:");
int numberOfbottles = in.nextInt();
int numberOfcans = in.nextInt();
System.out.printf("Bottles: %8d\n", numberOfbottles);
System.out.printf("Cans: %8d\n", numberOfcans);
}
}
Explanation:
Ask user to input the number of bottles and cans using Scanner class
Print the results so that the numbers to the right line up (Since we know that the numbers have at most 8 digits, we can use %8d in printf. Also, be aware that how printf statements are written so that the numbers line up)