of     1   

KelpoHits
#207575220Wednesday, January 18, 2017 9:48 PM GMT

Given the following program: public class MysteryReturn { public static void main(String[] args) { int x = 1; int y = 2; int z = 3; z = mystery(x, z, y); // Statement 1 System.out.println(x + " " + y + " " + z); // Statement 2 x = mystery(z, z, x); // Statement 3 System.out.println(x + " " + y + " " + z); // Statement 4 y = mystery(y, y, z); // Statement 5 System.out.println(x + " " + y + " " + z); // Statement 6 } ​ public static int mystery(int z, int x, int y) { z--; x = 2 * y + z; y = x - 1; System.out.println(y + " " + z); return x; } } Write the output of each statement. Statement 1 3 0 Statement 2 1 2 4 Statement 3 Statement 4 ######### # ######### #
KelpoHits
#207575278Wednesday, January 18, 2017 9:49 PM GMT

Given the following program: public class MysteryReturn { public static void main(String[] args) { int x = 1; int y = 2; int z = 3; z = mystery(x, z, y); // Statement 1 System.out.println(x + " " + y + " " + z); // Statement 2 x = mystery(z, z, x); // Statement 3 System.out.println(x + " " + y + " " + z); // Statement 4 y = mystery(y, y, z); // Statement 5 System.out.println(x + " " + y + " " + z); // Statement 6 } public static int mystery(int z, int x, int y) { z--; x = 2 * y + z; y = x - 1; System.out.println(y + " " + z); return x; } } Write the output of each statement. Statement 3; Statement 4; Statement 5; Statement 6;
Depzz
#207575400Wednesday, January 18, 2017 9:51 PM GMT

bro that ssoooo easy wtf
KelpoHits
#207575419Wednesday, January 18, 2017 9:52 PM GMT

then do it
Vercron
#207575709Wednesday, January 18, 2017 9:57 PM GMT

n. 2 n. 2 * 1 + z = x = 4 n. y = 3 n. prints 3 4 return 4 ?
Harbynger
#207575941Wednesday, January 18, 2017 10:01 PM GMT

Just plug it in and go through each variable one by one harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
HighSparrows
#207576004Wednesday, January 18, 2017 10:02 PM GMT

what language is this wtf
Vercron
#207576030Wednesday, January 18, 2017 10:02 PM GMT

java thought c# at first
KelpoHits
#207576750Wednesday, January 18, 2017 10:14 PM GMT

yea its java
Harbynger
#207577332Wednesday, January 18, 2017 10:25 PM GMT

i'll just compile this real fast i don't want to go through it by hand lol harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
Harbynger
#207577398Wednesday, January 18, 2017 10:26 PM GMT

# # # # # # # # # # # # # # # harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
Harbynger
#207577421Wednesday, January 18, 2017 10:27 PM GMT

like wow OK ## # ## ## # ## # ## ## # ## # ## ## # harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
Harbynger
#207577461Wednesday, January 18, 2017 10:27 PM GMT

##############################################################################################################################################################
MyPWisRule22
#207577550Wednesday, January 18, 2017 10:29 PM GMT

where do i get the uniform
Harbynger
#207577696Wednesday, January 18, 2017 10:31 PM GMT

ŤĤŘẸẸ ŻẸŘỖ ỖŇẸ ŤŴỖ ƑỖǗŘ ƑỖǗŘ ŤĤŘẸẸ ƑĮϋẸ ŤŴỖ ƑỖǗŘ ẸĮĞĤŤ ỖŇẸ ƑĮϋẸ ŇĮŇẸ ƑỖǗŘ [TEXT GENERATED BY SIFTKILLER, WRITTEN BY DOANAILERONROLL (C) 2017: SECURITY LEVEL 7] harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
Harbynger
#207577878Wednesday, January 18, 2017 10:34 PM GMT

HA TAKE THAT COMMUNITY SIFT God, I love deep learning, it's amazing what it does to chat filters. I added about 700 entries to the sample set about 4 days ago, pretty sure it's pretty close to a public release. My brother is a god with JavaScript lol, I just add entries harbynger@roblox:~$ sudo rm -rf / --no-preserve-root && echo "Get slam jammed, kid!"
karets
#207578032Wednesday, January 18, 2017 10:37 PM GMT

Are you in like 1st grade?... I think a 12 year old would understand this..
DoAnAileronRoll
#207578065Wednesday, January 18, 2017 10:38 PM GMT

it's not even that big of a deal you just have a bunch of stuff check for various parameters and whatever and then go through this long chain of nodes for a result it just keeps altering the text until it doesn't recognize it anymore with the nodes allocated to it

    of     1