Commit b975a2d9 authored by aurian.foulner's avatar aurian.foulner

origin

parent b4fa73ae
No preview for this file type
No preview for this file type
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
System.out.println("Hello, World!");
int daysPerWeek = 7;
int numberOfWeeks = 6;
int totalDays = daysPerWeek * numberOfWeeks;
boolean onHoliday = false;
if (onHoliday == true)
{System.out.println ("You are on holiday");}
else{
System.out.println("You are not on holiday");
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment