+ 1

Multiple satements in Java

Hello, So I'm very new to this so please bear with me. I wrote an extremely basic program class MyClass { static void sayHello(String name) { System.out.println("Good Morning, " + name); } public static void main(String [ ] args) { sayHello("Aaron"); sayHello("The Dude"); } } how do I add other lines so that the output would say things like, "What's on the agenda for today?" or "What wasn't done yesterday that needs to be completed today?" Thank you in advance. :)

23rd Oct 2019, 7:24 PM
Trogdor the Burninator
1 Respuesta
0
I dunno, here's your thing with another line of text added 😑 https://code.sololearn.com/cDNuSJFs6OG4/?ref=app
24th Oct 2019, 5:15 AM
will
will - avatar