subject
Computers and Technology, 02.05.2021 04:00 cuhh

Write a program that simulates flipping a coin to make decisions. The input is how many decisions are needed, and the output is either heads or tails. Assume the input is a value greater than 0. Ex: If the input is:
3
the output is:
tails heads tails
For reproducibility needed for auto-grading, seed the program with a value of 2. In a real program, you would seed with the current time. In that case, every program's output would be different, which is what is desired but can't be auto-graded.
Note: A common student mistake is to create an instance of Random before each call to rand. nextInt(). But seeding should only be done once, at the start of the program, after which rand. nextInt() can be called any number of times. Also, rand. nextInt() must be used without arguments.
Your program must define and call the following method that randomly picks 0 or 1 and returns "heads" or "tails". Assume the value 0 represents "heads" and 1 represents "tails".
public static String headsOrTails(Random rand)
Java code:
import java. util. Scanner;
import java. util. Random;
public class LabProgram {
/* Define your method here */public static String headsOrTails(Randon rand) {
int rand = rand. nextInt(2);
if (rand==0) {
return "heads";
} else {
return "tails";
}
}
public static void main(String[] args) {
Scanner scnr = new Scanner(System. in);
Random rand = new Random(2); // Unique seed
// Add more variables as needed
/* Type your code here. */Scanner scnr = new Scanner(System. in) {
int userNum=scnr. nextInt();
Random rand = new Random();
for (int i=0; i < userNum; ++i) {
System. out. println(headsOrTails(rand)); //I added userNum in the () & still got it wrong
}
}
}
My errors:
Failed to compile
LabProgram. java:15: error: class, interface, or enum expected public static void main(String[] args) {
^LabProgram. java:17: error: class, interface, or enum expected Random rand = new Random(2); // Unique seed
^
LabProgram. java:20: error: class, interface, or enum expected /* Type your code here. */Scanner scnr = new Scanner(System. in) {
^
LabProgram. java:23: error: class, interface, or enum expected Random rand = new Random();
^
LabProgram. java:25: error: class, interface, or enum expected
for (int i=0; i < userNum; ++i) {
^
LabProgram. java:25: error: class, interface, or enum expected
for (int i=0; i < userNum; ++i) {
LabProgram. java:25: error: class, interface, or enum expected
for (int i=0; i < userNum; ++i)
^LabProgram. java:27: error: class, interface, or enum expected } ^
8 errors

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 21:30
Write a function named printfloatrepresentation(float number) that will print the floating point representation of a number using the format given below. (sign bit) exponent in binary (assumed bit).significandfor example if the number passed an argument is 71 yourprogram should print (0) 10000101 (1).00011100000000000000000similarly if the number passed to the function as argument is -71 the program should print (1) 10000101 (1).00011100000000000000000
Answers: 3
question
Computers and Technology, 23.06.2019 08:30
When you interpret the behavior of others according to your experiences and understanding of the world your evaluation is
Answers: 1
question
Computers and Technology, 23.06.2019 21:50
Description: write function lastfirst() that takes one argument—a list of strings of the format "lastname, firstname" —and returns a list consisting of two lists: (a) a list of all the last names (b) a list of all the first names
Answers: 2
question
Computers and Technology, 24.06.2019 00:50
3. what is the output of the following statements? temporary object1; temporary object2("rectangle", 8.5, 5); temporary object3("circle", 6, 0); temporary object4("cylinder", 6, 3.5); cout < < fixed < < showpoint < < setprecision(2); object1.print(); object2.print(); object3.print(); object4.print(); object1.set("sphere", 4.5, 0); object1.print();
Answers: 1
You know the right answer?
Write a program that simulates flipping a coin to make decisions. The input is how many decisions ar...
Questions