Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please separate this code in different int methods and create another method that makes level1 run only for 90 seconds and increase the total time

please separate this code in different int methods

and create another method that makes level1 run only for 90 seconds and increase the total time by 5 seconds if 5 questions is correct

and create a two method one is asking the user if he wants to continue or wants to quite

int method for time like this ----------------->( public static long getTestTime(starttime,endTime) {

and method for level1

JAVA java JAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA javaJAVA java

-------------------------------------------------------------------------------------------------------------------

package javaapplication108;

import java.util.Scanner;

/** * * @author Zainab */ public class JavaApplication108 {

/** * @param args the command line arguments */ public static void main(String[] args) { Scanner input = new Scanner(System.in);

int x, y, z;

int correctCount = 0; // Count the number of correct answers int count = 0; // Count the number of questions String output = ""; // output string is initially empty long starttime = System.currentTimeMillis();

while (count < 7) {

x = (int) (Math.random() * 10) + 10; y = (int) (Math.random() * 10) + 10; z = 0; int min = 0; int max = 4; // exclusive int num = (int) (Math.random() * (max - min) + min); char operator = ' ';

switch (num) { case 0: operator = '+'; z = x + y; break; case 1: operator = '-'; z = x - y;

break; case 2: operator = '*'; z = x * y;

break; case 3: operator = '/'; z = x / y;

break; default: operator = '?'; }

System.out.println(x + " " + operator + " " + y); System.out.println("....."); int val = input.nextInt(); if (z == val) { System.out.println("Correct"); correctCount++; } else { System.out.println("worng"); } count++; }

long endTime = System.currentTimeMillis(); long testTime = endTime - starttime;

System.out.println("Correct count is " + correctCount + " Test time is " + testTime / 1000 + " seconds " ); } }

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 Theory Icdt 99 7th International Conference Jerusalem Israel January 10 12 1999 Proceedings Lncs 1540

Authors: Catriel Beeri ,Peter Buneman

1st Edition

3540654526, 978-3540654520

Students also viewed these Databases questions

Question

I am paid fairly for the work I do.

Answered: 1 week ago

Question

I receive the training I need to do my job well.

Answered: 1 week ago