Answer:
Printed
Explanation:
The job was finished and sent to the printer. In the printer, you have to waite to be printed
Answer:a wavy red line
Explanation:
Hope this helps
Can I have brainliest pls
Hi,
the program is as follows
___________________________________________________________
import java.io.*;
class doubleval
{
public static void main()throws IOException
{
DataInputStream dt=new DataInputStream(System.in);
System.out.println("Enter NUMBER WHOSE DOUBLE U WANT TO PRINT");
int n=Integer.parseInt(dt.readLine());
for(int i=n;i<=100;i=2*i)
{
System.out.println(i);
}
}
}
Make the zig zag part more spaced out