of     1   

KelpoHits
#207574647Wednesday, January 18, 2017 9:37 PM GMT

Given the following program: public class MysteryWho { public static void main(String[] args) { String whom = "her"; String who = "him"; String it = "who"; String he = "it"; String she = "whom"; sentence(he, she, it); sentence(she, he, who); sentence(who, she, who); sentence(it, "stu", "boo"); sentence(it, whom, who); } public static void sentence(String she, String who, String whom) { System.out.println(who + " and " + whom + " like " + she); } } Write the output of each of the following calls. sentence(who, she, who); sentence(it, "stu", "boo"); sentence(it, whom, who);
zman250
#207574666Wednesday, January 18, 2017 9:38 PM GMT

w if you don't get yo pickle jar lookin' head out of my face
Blandue
#207574693Wednesday, January 18, 2017 9:38 PM GMT

19
KelpoHits
#207574694Wednesday, January 18, 2017 9:38 PM GMT

basic java
Vercron
#207574717Wednesday, January 18, 2017 9:39 PM GMT

m'lady c#?
Vercron
#207574731Wednesday, January 18, 2017 9:39 PM GMT

ye now it looks more stupid
WatUGet4LunchPatriot
#207574776Wednesday, January 18, 2017 9:40 PM GMT

Nty Wat you get 4 lunch? I got the Southern Fried Chicken 5 Quid meal deal from Sainsbury.
KelpoHits
#207574847Wednesday, January 18, 2017 9:41 PM GMT

do it pls
Vercron
#207574929Wednesday, January 18, 2017 9:42 PM GMT

him and whom like it who and stu like boo who and him like her ?
Isosta
#207575039Wednesday, January 18, 2017 9:44 PM GMT

ill just run it in VS gimme a minute $.get('gud')
Vercron
#207575104Wednesday, January 18, 2017 9:46 PM GMT

dont have vs on this computer )^:
KelpoHits
#207575134Wednesday, January 18, 2017 9:46 PM GMT

nvm did it

    of     1