Answered step by step
Verified Expert Solution
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
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started