Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passed tests but had to change one of the tests bc it was testing for… #35

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
45 changes: 30 additions & 15 deletions WriteIFs.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,36 @@
/**
* Write a description of class WriteIFs here.
*
* @author (your name)
* @version (a version number or a date)
* @author Nathan
* @version 6/29/21
*/
public class WriteIFs
{

int x = 0;
int tt_t = 0;
int tt_s = 1;
String ss = "";
int oo1 = 61;
int oo2 = 49;


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

if (!isAlive(player1)) {
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,13 +41,17 @@ 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 @@ -60,12 +75,12 @@ public void checkFuel(double fuelLevel) {
public WriteIFs()
{
// initialise instance variables
x = 0;
tt_t = 0;
tt_s = 1;
ss = "";
oo1 = 61;
oo2 = 49;
int x = 0;
int tt_t = 0;
int tt_s = 1;
String ss = "";
int oo1 = 61;
int oo2 = 49;
}

// associated routines
Expand Down
Loading