subject

1. type a statement that reads a user-entered integer into variable numusers. assume scnr already exists.

2.write a statement that outputs variable numcars as follows. end with a newline.
there are 99 cars.
note: whitespace (blank spaces / blank lines) matters; make sure your whitespace exactly matches the expected output.
public class outputexample {
public static void main (string [] args) {
int numcars = 99;
scannerscnr=new scanner(system. in);
numcars=scnr. nextint();
system. out. println(numcars);
return;
}
}

3. type the statements. then, correct the one syntax error in each statement. hints: statements end in semicolons, and string literals use double quotes.

system. out. printl("predictions are hard.");
system. out. print("especially ');
system. out. println("about the future.").
system. out. println("num is: " - usernum);
import java. util. scanner;

public class errors {
public static void main(string [] args) {
int usernum = 5;

system. out. println ("predictions are hard. ");
system. out. print("especially '");
system. out. print("about the future.");
system. out. println("num: "- usernum);
return;
}
}

errors. java: 10: operator - cannot be applied to java. lang. string, int system. out. println("num: "- usernum); ^ 1 error

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 23.06.2019 06:00, hilarydodard7099
Which statistical function in a spreadsheet you to see how far each number varies, on average, from the average value of the list?
Answers: 2
image
Computers and Technology, 24.06.2019 03:30, etxchrissy
What is the purpose of a computer network needs assessment? to analyze which workers need more training to improve their performance to compare worker productivity to determine what steps employees can take to increase company revenue to evaluate how to move from the current status to the desired goal
Answers: 2
image
Computers and Technology, 24.06.2019 04:10, kris1920
Write a program that reads a set of floating-point values. ask the user to enter the values, then print • the average of the values. • the smallest of the values. • the largest of the values. • the range, that is the difference between the smallest and largest. of course, you may only prompt for the values once.
Answers: 3
image
Computers and Technology, 24.06.2019 07:00, erick7123
Why do we mark tlc plates with pencil and not with pen
Answers: 2
You know the right answer?
1. type a statement that reads a user-entered integer into variable numusers. assume scnr already ex...

Questions in other subjects:

Konu
Social Studies, 11.01.2021 23:40
Konu
Computers and Technology, 11.01.2021 23:40