Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 41 additions & 8 deletions WriteIFs.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,46 @@
/**
* Write a description of class WriteIFs here.
*
* @author (your name)
* @version (a version number or a date)
* @author Sandeep Narayana Mangalam
* @version 02/09/2020
*/

public class WriteIFs
{
int x;
int tt_t;
int tt_s;
int oo1, oo2;
String ss;

public void playerDied(boolean player1) {
// Write an IF statement that checks “player1.isAlive()”
// and if that’s false, calls “displayGameOver(player1)”


if (isAlive(true)){

System.out.println(player1);

}
else
{
displayGameOver(player1);
}
}

public String thermoSTAT(int room) {
// Write an IF statement that checks the
// “temperature(room)” and if that check is less than 70,
// calls “heatOn()” else calls “coolOn()”



if(tempurature(room)<70)
{
heatOn();
}
else {
coolOn();
}

return this.ss;
}

Expand All @@ -30,14 +51,26 @@ public void fireplaceControl(Object fireplace1) {
// AND
// “insideTemp()” is less than 62,
// calls “startAFire(fireplace1)”

if((outsideTemp()<50) || (insideTemp()<62))
{
startAFire(fireplace1);
}

}

public void checkFuel(double fuelLevel) {
// Write an IF statement that checks “fuelLevel”
// and if that check is less than 0.08, calls “refuel()”

if (fuelLevel<0.08)
{
refuel();

}
}


}



Expand All @@ -57,8 +90,8 @@ public void checkFuel(double fuelLevel) {
/**
* Constructor for objects of class WriteIFs
*/
public WriteIFs()
{
public WriteIFs()
{
// initialise instance variables
x = 0;
tt_t = 0;
Expand Down
Loading