No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Student
7 Posted Topics
Write a conditional that decreases the variable [B]shelfLife[/B] by [B]4[/B] if the variable [B]outsideTemperature[/B] is greater than [B]90[/B] . if(outsdieTemperature > 90){ shelfLife-4; } something is wrong..can you help..? | |
Write a conditional that assigns the boolean value true to the variable fever if the variable temperature is greater than 98.6 . i dont understand what i'm suppose to do... can you explain what i am suppose to do please.. | |
i have to set the time in minutes when this plane is expected to land or take-off. and i have to use method int..:eek: public int setScheduledTime() { } what should i do.... :sad: ![]() | |
public class Plane { private String FlightNumber; private String Location; private boolean isLanding; private int ScheduledTime; private static int TotalPlanes; public Plane(String FlightNumber, String Location){ this.FlightNumber = FlightNumber; this.Location = Location; Plane.TotalPlanes++; } public String getFlightNumber(){ return this.FlightNumber; } public void setFlightNumber(String f){ this.FlightNumber = f; } public String getLocation(){ … | |
[B]public Plane(String FlightNumber, String Location)[/B] [B]can i use 2 strings ...?[/B] | |
hi everyone i need some help with java..:sad: [B]Write the definition of a method twice , which receives an integer parameter and returns an integer that is twice the value of the parameter.[/B] and [B]Write the definition of a class Telephone . The class has no constructors, one instance variable … | |
You are given a class named Clock that has one int instance variable called hours . Write a constructor for the class Clock that takes one parameter, an int , and gives its value to hours . help me some one :( |
The End.