Search:

Type: Posts; User: awasthisa

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    1,068

    Method question

    [Question]
    Create a Java program that uses methods. In the main method, the program must prompt the user to enter an integer number from 1 to 20. Then, the program must call a method named “guess”...
  2. Replies
    5
    Views
    1,068

    Re: Need some assistance with the method

    import java.util.Scanner;

    public class Test{

    public static void main(String []args) {

    Scanner input = new Scanner(System.in);

    System.out.print("Enter an integer between 1-20:");
  3. Replies
    5
    Views
    1,068

    Need some assistance with the method

    Create a Java program that uses methods. In the main method, the program must prompt the user to enter an integer number from 1 to 20. Then, the program must call a method named “guess” that receives...
Results 1 to 3 of 3