Skip to content

Commit

Permalink
file added
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul255 committed Jun 11, 2019
1 parent 6be7108 commit 1217146
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ protected void onCreate(Bundle savedInstanceState) {
display1("This is Box 1.");
display2("And this is Box 2.");
display3("And look! Box 3!");
int weekday = 5;
int weekend = 9;
int optimalHours = 7 * 8;

int actualHours = weekday;
actualHours = actualHours + weekend * 2;
int solution = optimalHours - actualHours;
display(solution);

}

Expand Down

0 comments on commit 1217146

Please sign in to comment.