Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

How many loop iterations will execute if the user plans to type 'l'm hungry', 'You are weird', 'Goodbye', and 'I like you'. _____ Write an

image text in transcribed

How many loop iterations will execute if the user plans to type 'l'm hungry', 'You are weird', 'Goodbye', and 'I like you'. _____ Write an expression that continues to bid until the user enters 'n'. 1 import java.util.Random: 2 import java.util.Scanner: 3 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(/* Your solution goes here */) { 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 How many loop iterations will execute if the user plans to type 'l'm hungry', 'You are weird', 'Goodbye', and 'I like you'. _____ Write an expression that continues to bid until the user enters 'n'. 1 import java.util.Random: 2 import java.util.Scanner: 3 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(/* Your solution goes here */) { 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

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

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions

Question

Brief the importance of span of control and its concepts.

Answered: 1 week ago

Question

What is meant by decentralisation?

Answered: 1 week ago