Код работает, но он не дает мне правильный вывод - PullRequest
1 голос
/ 06 октября 2019

Я довольно новичок в кодировании. Я не уверен, как переместить входные значения по методам. Я пробовал разные способы, но это всегда давало мне ошибку. Также мне интересно, как бы вы возвращали несколько значений. Например, давайте скажем, что вместо getLength () и getWidth () будет один с именем getInput (), в котором будут возвращены как длина, так и ширина.

    import java.util.Scanner;  // Needed for the Scanner class
/**
   This program calculates the area of a rectangle.
*/
public class Rectangle
{
   //main method
   public static void main(String[] args)
   {  
      float length = 0;
      float width = 0;
      float area = 0;


      getLength();
      getWidth();   
      calcArea(length, width);
      displayData(area);
   }

   //method 2
   public static float getLength()
   { 
      // Create a Scanner object to read from the keyboard.
      Scanner keyboard = new Scanner(System.in);

      System.out.print("Enter Length: ");
      float length = keyboard.nextFloat();

      return length;     

   }

   public static float getWidth()
   {
      // Create a Scanner object to read from the keyboard.
      Scanner keyboard = new Scanner(System.in);

      System.out.print("Enter Width: ");
      float width = keyboard.nextFloat(); 

      return width;

   }


   public static float calcArea(float length, float width)
   {
     float area = length*width;

     System.out.print("\nxxxx "+area);

     return area;

   }

   public static void displayData(float area)
   {
      System.out.print("\nThe area of the rectangle is "+area);
   }

}

Ответы [ 2 ]

2 голосов
/ 06 октября 2019

Ваша проблема связана с тем, что не пустые методы будут возвращать значения. Если вы не назначите эти значения никаким переменным, Java ничего с ними не сделает.

float length = 0;
float width = 0;
float area = 0;

// Values are retrieved, but must be assigned to variables
length = getLength();
width = getWidth();   
area = calcArea(length, width);

Я призываю вас попробовать что-то более интуитивное. Я понимаю, что вы новичок в программировании, но попробуйте поиграться с этим и посмотреть, где это вас зацепит. ООП является ключевым компонентом Java, и обычно рекомендуется использовать его всегда, когда это возможно.

Rectangle.java:

public class Rectangle
{

    private float length;
    private float width;

    public Rectangle(float length, float width)
    {
        this.length = length;
        this.width = width;
    }

    public float getArea()
    {
        return length * width;
    }

    public float getLength()
    {
        return length;
    }

    public float getWidth()
    {
        return width;
    }
}

Основной класс:

public static void main(String[] args)
{
    // Only open one stream at a time
    // Opening multiple without closing the previous may cause some problems in the future
    Scanner keyboard = new Scanner(System.in);

    System.out.print("Enter Length: ");
    float length = keyboard.nextFloat();
    System.out.print("Enter Width: ");
    float width = keyboard.nextFloat();

    // Remember to close the stream when you are finished using it
    keyboard.close();

    // Create a new rectangle with the length and width that was given by the user
    Rectangle rect = new Rectangle(length, width);
    // Round the area to the nearest tenth of a decimal place and display results
    System.out.printf("The area of the rectangle is %.1f", rect.getArea());
}
1 голос
/ 06 октября 2019

Это должно помочь:

      length = getLength();
      width = getWidth();   
      area = calcArea(length, width);
      displayData(area);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...