Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an expression that continues to bid until the user enters 'n'. 4 public class AutoBidder { 5 public static void main (String args) {

image text in transcribed

Write an expression that continues to bid until the user enters 'n'. 4 public class AutoBidder { 5 public static void main (String args) { 6 Scanner scnr = new Scanner(System.in): 7 Random randGen = new Random(): 8 char keepGoing = '-': 9 int nextBid = 0: 10 11 randGen. setSeed(5): 12 while () { 13 nextBid = nextBid + (randGen.nextInt(10) + 1): 14 System.out.println("I'll bid $" + nextBid + "!"): 15 System.out.print("Continue bidding? (y) "): 16 keepGoing = scnr.next().charAt(0): 17 } 18 System.out.println(""): 19 20 return: 21 } 22 } Failed to compile AutoBidder.java: 13: char cannot be dereferenced while (keepGoing.matches('n')) {

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions