Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

import java.util.Scanner;

public class WinningTeam {
   public static void main(String[] args) {
      Scanner scnr = new Scanner(System.in);
      
      Team team = new Team();
      
      String name = scnr.next();
      int wins = scnr.nextInt();
      int losses = scnr.nextInt();
      
      team.setName(name);
      team.setWins(wins);
      team.setLosses(losses);
      
      team.printStanding();
   }
}

This is the second part of the program and not geting it to run 

public class Team {
   // TODO: Declare private fields - name, wins, losses
   private String  name;
   private int wins;
   private int losses;
   
   
   
   public int getlosses(){
      return losses;
   }
   
   
   // TODO: Define mutator methods - 
   //       setName(), setWins(), setLosses()
   public String setName(){//String name int wins int losses
      return name;
      
   }
   public int setWins(){
      return wins;
      
   }
   public int  setLosses(){
      return losses;
   }
  
   // TODO: Define accessor methods - 
   //       getName(), getWins(), getLosses()
   public String getName(){
      return name;
   }
   
   public int getWins(){
      return wins;
   }
   
   public int getLosses(){
      return losses;
   }
   
   // TODO: Define getWinPercentage()
    public double getWinPercentage(){
      return ((double)wins)/(wins + losses);
   }
   
   
   // TODO: Define printStanding()
   public void printStanding(){
      double winPercentage; 
      winPercentage = getWinPercentage();
      
      System.out.printf("Win percentage: %.2f\n", winPercentage);
      
      if (winPercentage>= 0.5) {
         System.out.println("Congratulations, Team " + name + " has a winning average!");
      }
      else{
         System.out.println("Team " + name + " has a losing average.");
      }
      
   
}
}

Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education