Skip to content
Merged
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
4 changes: 2 additions & 2 deletions ch_06/Exercise06_30.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void main(String[] args) {
System.out.println("You Win!");
break;
} else if (rolling == 7) {
System.out.println("You loose!");
System.out.println("You lose!");
break;
}
}
Expand Down Expand Up @@ -78,4 +78,4 @@ static String checkResult(int roll) {
return "point";

}
}
}