Question
What does this mean?
Program output displayed here system out.print in Roll (i 1) t is rollTota t diel diez Dicestats .java error: not a statement System-out printin Roll t (it 1) is roll Total t diel t die2 Dicestats .Java System-out print int Roll (i 1) is roll Total t 4 diel die2 Trouble with lab? v 5.1 Array cond
0 0
Add a comment Improve this question Transcribed image text
Answer #1

This statement is supposed to be:

System.out.println("Roll " + (i+1) + " is " + rollTotal + " (" + die1 + "+" + die2 + ")");

But you're missing a + sign after the " is " string. That is where the arrow is pointing to... Just check it out.

So, replace the line with this line.

Add a comment
Know the answer?
Add Answer to:
What does this mean? Program output displayed here DiceStats.java:92: error: ')' expected System.out.print ln("Roll" + (i...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • hey, struggling with this assignment, wondering if if I could get some help. Here is the...

    hey, struggling with this assignment, wondering if if I could get some help. Here is the project details The following lists a Dice class that simulates rolling a die with a different number of sides. The default is a standard die with six sides. The rollTwoDice function simulates rolling two dice objects and returns the sum of their values. The srand function requires including cstdlib. my class ------------------------------------ class Dice { public: Dice(); DIce(int numSides); virtual int rollDice()const; protected: int...

  • Please Help with the code below not sure where my error is...Thanks. Program output displayed here:...

    Please Help with the code below not sure where my error is...Thanks. Program output displayed here: Davy's auto shop services Oil change -- $35 Tire rotation -- $19 Car wash -- $7 Car wax -- $12 Enter the first service from the menu: Traceback (most recent call last): File "main.py", line 9, in choice1 = input("Enter the first service from the menu: "); EOFError: EOF when reading a line Here is the code: # Type your code here services =...

  • JAVA getting the following errors: Project4.java:93: error: ']' expected arr[index] = newVal; // LEAVE THIS HERE....

    JAVA getting the following errors: Project4.java:93: error: ']' expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:93: error: ';' expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:93: error: <identifier> expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:94: error: illegal start of type return true; ^ Project4.java:98: error: class, interface, or enum expected static int bSearch(int[] a, int count, int key) ^ Project4.java:101: error: class, interface, or...

  • I. [15%) Which one causes compilation is deleted, what is the output when the program is...

    I. [15%) Which one causes compilation is deleted, what is the output when the program is executed? statement from sl to s6 (see below) cause compilation error? Assume the statement that class X void 120 f System.out.println("XXX");3 Answeri The statement causes compilation errors: class Y extends X void £20 1 System.out.printin("YYY"); void f30 &System.out.printin"AAA"): class Z extends Y void 120 ( System.out.printin"zzz; void 130 System.out.println("BBB"); The output of the program (after the statement that causes compilation is deleteod) class Testf...

  • Write a c++ program that simulates a million of games in craps. I am having a...

    Write a c++ program that simulates a million of games in craps. I am having a trouble getting to loop a million of times. I am trying to use a const for a million. This is the code so far. #include <iostream> #include <cstdlib>// contains prototypes for functions srand and rand #include <ctime>// contains prototype for function time #include <iomanip> using namespace std; int rollDice(); // rolls dice, calculates and displays sum void printstats(); int totroll = 0, games, point,...

  • Assuming the following code is part of an error-free program, what is the output on the...

    Assuming the following code is part of an error-free program, what is the output on the screen vector<char> example(4,'a'); example[2]='b'; example.at(1)-c'; for (int i-0; I <example.size); i++) cout << examplelil<<""

  • Need in Python! Consider the following program and expected output. Rewrite it using a for loop...

    Need in Python! Consider the following program and expected output. Rewrite it using a for loop and a conditional break statement such that it has the same output.   HINT: Stay with i as the main loop counter and let j control the break behavior.   i = 0 while i < 10 and j < 10 : j = i * 2 print(i, j) i += 1 # Output below, for reference - not part of the program! 0 0 1...

  • I have a Java question. (I'm using BlueJ.) I'm trying to program something that calculates pay...

    I have a Java question. (I'm using BlueJ.) I'm trying to program something that calculates pay roll. Most of it works, but I've identified two parts that don't: It labels all salaries as "Fulltime" no matter how many hours worked I input, and the do/while loop does something weird. The if/else statement I have for the fulltime vs part time is: if (hoursWorked < 40.0) { position = partTime; } else if (hoursWorked >= 40.0 || hoursWorked <= 168.0) {...

  • the RollDie.java: import java.util.Random; import java.util.Scanner; /* * HEADER HERE !! */ public class RollDie {...

    the RollDie.java: import java.util.Random; import java.util.Scanner; /* * HEADER HERE !! */ public class RollDie { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); // Step 1: Declare and initialize array and // initialize random number generator int[] rollValueCounts = new int[7]; Random randGen = new Random(); // Step 2: Determine the number of rolls System.out.print("How many times do you want to roll the die?"); System.out.print(" [Max value is 100] "); int numRolls = scnr.nextInt(); // TODO:...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT