I'm a C# programmer, and I can tell you now that Java is almost the same in terms of syntax. So if you can understand this, it won't take long to understand C# too. He explains it very well too. I'm just skimming through and checking if there is anything I wouldn't know.
@robisdabest1eva solved this challenge but i cant past source :( but i used 3 if statements for saying that if the water is less then 0 then its ice if the water is more then 100 then its vapor and if the water is more then 0 AND less then 100 then its water
Make a little calculator where people can input the current temperature in Celsius of their room and your output will tell them what state water would be in that room. Good luck!
koenigsegg1000 man thanks alot before I read your comment i tried to make if ( name.trim() == "shpend") {....} but your example helped me alot thanks alot
when i writed shpend the if statement it shows This is else, I don't understand why should it be Hello Shpend because for name i gave shpend so the shpend == "shpend" but it shows only this is else can some1 tell me why it shows else and not Hello shpend
@Theguywithrandomname it is bad coding practice to check equality between strings using "==" he is right in using the equals method. The problem is he put semicolons after the if statements before they reached the code inside of them.
public class Shagrat { public static void main(String Shagrat[]) { System.out.print("Hellow, please tell me if you like marijuana."); Scanner scan = new Scanner(System.in); String question = scan.nextLine(); if(question.equals("yes")); System.out.print("wow");
if(question.equals("no"));
System.out.print("jerk"); }
why does my code print wowjerk nomadder if i say yes or no
@2112mbell The problem is that you put semicolons after your if(question.equals("yes")); Java saw this and went ahead and checked to see if it equaled yes. Regardless of the equality however, it saw the semicolon and assumed that you put no code within the body of the if statement. It then went and executed the print statement, and did the same with the other if statement. Remember if statements themselves don't get semicolons. You should use curly braces to organize your statements.
public class Shagrat { public static void main(String Shagrat[]) { System.out.print("Hellow, please tell me if you like marijuana."); Scanner scan = new Scanner(System.in);
public class MainClass { public static void main(String args[]){ int age = 60; if(age < 40) System.out.println("You still have some luster!"); else System.out.println("You have lost all of your luster!"); }
Im going to start out with console apps then I will go further win apps I think that its a good way to get what I want and thanx for ur tuts btw ur the best subscribed :3
class apples{ public static void main (String args[]){ Scanner input = new Scanner(System.in); System.out.println("enter new num:"); int temp = input.nextLine(); if (temp < 50){ } }
HOMEWORK ASSIGNMENT: Write two nested if statements, one under if (){ , the other under }else{ . Include User Input for the variable (shown in tutorial # 6).
I have a question.... how do i make it so that I can repeatedly input a string with the scanner. would i need to make multiple scanners or is there a way to do it with one. im making a number guessing game (of course xD) and i want to make it so that if i guess wrong then i am able to keep guessing till i am right.
@krnxmaster maybe there is a better way of doing this, but this is what I did:
import java.util.Scanner;
public class guessNumber{ public static void main (String[] args){ int number = 2; int userNumber; Scanner input = new Scanner(System.in); System.out.println("Please enter your number"); userNumber = input.nextInt();
hey bucky! I have one more question, what if there are more than 3 numbers involve in a nested if-else if statement? Like for example- if the number input from the user is >= 4 but must be <=9. what code should I put there? I've tried so many codes I saw on the net and whatever comes out to my mind but it did not worked.
hey bucky! I'm a subscriber of this tutorial and I really Love it!. It's so helpful to me. But I have 1 more problem that remains unsolved. Using this NESTED IF statement. I've been trying to make a program with IF-else if inside If-else if statement. And I have noticed that the third and the rest If-else if statement I made inside If-else if were not working. What am I supposed to do?
hey bucky! I'm a subscriber of this tutorial and I really Love it!. It's so helpful to me. But I have 1 more problem that remains unsolved. Using this NESTED IF statement. I've been trying to make a program with IF-else if inside If-else if statement. And I have noticed that the third and the rest If-else if statement I made inside If-else if were not working. What am I supposed to do?
i have took a few java classes over a year ago in college then i switched my major and forgot most of what i learned and these have been great to refresh my java programming skills.
What if you want put something like if my bowler speed is more than 140 Kmph but less than 155 than my bowler is a fast bowler or else he is a slow bowler. How do we put a range. plz help
I'm a C# programmer, and I can tell you now that Java is almost the same in terms of syntax. So if you can understand this, it won't take long to understand C# too. He explains it very well too. I'm just skimming through and checking if there is anything I wouldn't know.
grouseydaryl 6 days ago
I used to use nested if statements like you ... but then I took an arrow to the knee :(
dirtylowlife 1 week ago
@dirtylowlife You've managed to sink that low, you have nothing better to do but post an old, dead, never funny joke?
NerdyMinecraftHelp 1 week ago
Am I the only one who knew there was going to be an 'ifception' top comment?
pineappleking73000 3 weeks ago 2
You should use some shortcuts like CTRL + C/V and syso followed by CTRL + Space (System.out.println();).. By now, people should know.
Paranoidhaze 3 weeks ago
haha the comments are funny as always :D
Hellrun1 3 weeks ago
Gotta make my mind up... Which seat... Can... I take...
michboard 1 month ago in playlist Java Programming Tutorials
if(age > 100){ System.out.println("You are probably dead.");
}
MrYouMath 1 month ago 3
@MrYouMath or maybe in Guiness Records :P
TheRealDiaCraft 1 month ago
@robisdabest1eva solved this challenge but i cant past source :( but i used 3 if statements for saying that if the water is less then 0 then its ice if the water is more then 100 then its vapor and if the water is more then 0 AND less then 100 then its water
albertog2man 1 month ago
Thx for ur tutorials the helped me to pass my first programming exam =P
btw u don t have to write every time System.out.pritln. u could just write Syso then type Control Key+ Space bar and it comes out itself :)
Gre89ful 1 month ago
@Gre89ful Good tip
roblefferts 1 month ago
okay guys, first challenge.
Make a little calculator where people can input the current temperature in Celsius of their room and your output will tell them what state water would be in that room. Good luck!
robisdabest1eva 1 month ago in playlist More videos from thenewboston
@robisdabest1eva Nice with a little challenge to practice this. Nailed it B)
Mtc529 1 month ago
This has been flagged as spam show
16 and 17 lost me, im back now
c4stoners 1 month ago
Comment removed
c4stoners 1 month ago
Was Kelsy And Nicole TUNA!!!!!
ThexKezza 2 months ago in playlist Java Programming Tutorials
IFCEPTION!!!
thebigbang100 2 months ago
So what is a string that you have been using
DCM0Dz 2 months ago
So I'm rewatching the series for second time (all is clear now) and thought: "I'm going to read the top comments"..... ..... OHH right one is mine :D
xXxDiukexXx 2 months ago
Can anyone plaese tell me what this means
not a statment.
Cause Im doing a programm that converts money into pounds and I have this error
Thank you !!!
MultiGamerDA 2 months ago
No sound?
epicKiipa 3 months ago in playlist More videos from thenewboston
@Jarod1453 why copy a top comment? lol
wipperol 3 months ago
@wipperol topcommentception.
xCraftingSquaresx 3 months ago in playlist Java Programming Tutorials
If statement inside an if statement inside an if statement? IFception!!!!!
Jarod1453 3 months ago
nestedcepton
CodeSensitive 3 months ago
koenigsegg1000 man thanks alot before I read your comment i tried to make if ( name.trim() == "shpend") {....} but your example helped me alot thanks alot
shpenddbajgora 3 months ago
thenewboston bucky All your video are subscribed and liked
shpenddbajgora 3 months ago
hello can somebody help me!
I writed for example:
System.out.println("Write your name: ");
String name = input.nextLine();
if(name == "shpend"){ System.out.println("Hello " + name);
else{ System.out.println("This is else"); }
when i writed shpend the if statement it shows This is else, I don't understand why should it be Hello Shpend because for name i gave shpend so the shpend == "shpend" but it shows only this is else can some1 tell me why it shows else and not Hello shpend
shpenddbajgora 3 months ago
@shpenddbajgora the error is in your if statement.... it should be....if(name.equals("shpend")) .
koenigsegg1000 3 months ago
@shpenddbajgora Java is case sensitive. Or it could be @koenigsegg1000 ;)
ashadow0309 2 months ago in playlist Java Programming Tutorials
Eveyone here! Each time you copy and paste this way, god kills a cat! True story!
o0Richard 3 months ago
@o0Richard good! my apartment has plenty of those filthy beasts.
53knights 2 months ago
Soooooo helpful!! Thank you thank you thank you!!
JACastillo123 3 months ago
Bucky you are great!
NikoFurius 4 months ago
this is good.
iArn4v 4 months ago in playlist Java Programming Tutorials
1:25 no, i'm pretty sure i'm not old
abnermtj 4 months ago
1:29 "cuz i told you later"
...oh bucky
N1G3L2 4 months ago in playlist NewBoston Java Programming
Wouldn't it be easier to make these into "else if" statements???
C0GSniper 4 months ago in playlist Java Programming Tutorials
@C0GSniper nope. if the first condition is met it stops checking the rest.
JKTCGMV13 4 months ago in playlist More videos from thenewboston
@Theguywithrandomname it is bad coding practice to check equality between strings using "==" he is right in using the equals method. The problem is he put semicolons after the if statements before they reached the code inside of them.
KittyPlaysViolin 5 months ago
wasnt this obvious....
HardlyMinecraft 5 months ago
import java.util.Scanner;
public class Shagrat { public static void main(String Shagrat[]) { System.out.print("Hellow, please tell me if you like marijuana."); Scanner scan = new Scanner(System.in); String question = scan.nextLine(); if(question.equals("yes")); System.out.print("wow");
if(question.equals("no"));
System.out.print("jerk"); }
why does my code print wowjerk nomadder if i say yes or no
2112mbell 5 months ago
@2112mbell try if(question == "yes) and if(question =="no") instead
Theguywithrandomname 5 months ago
@2112mbell The problem is that you put semicolons after your if(question.equals("yes")); Java saw this and went ahead and checked to see if it equaled yes. Regardless of the equality however, it saw the semicolon and assumed that you put no code within the body of the if statement. It then went and executed the print statement, and did the same with the other if statement. Remember if statements themselves don't get semicolons. You should use curly braces to organize your statements.
KittyPlaysViolin 5 months ago
Im having problems getting a string input into multiple if statements. Anyone please help me with why the code below doesnt work. Pls!
2112mbell 5 months ago
import java.util.Scanner;
public class Shagrat { public static void main(String Shagrat[]) { System.out.print("Hellow, please tell me if you like marijuana."); Scanner scan = new Scanner(System.in);
String question = scan.nextLine(); if(question.equals("yes")); System.out.print("wow");
if(question.equals("no"));
System.out.print("jerk"); }}
2112mbell 5 months ago
why not only write System.out.println("Nicole");?
marketanarchist2011 5 months ago in playlist Java Programming Tutorials
If statements within if statements.
Isn't that ifception?
Aflacduck247 5 months ago 3
@Aflacduck247 Naw, Javaception is catchier.
WhoLetTheGuyOut 5 months ago
haha the views start to drop around here
sublimeftw2 6 months ago 3
dude ur vids are amazingly helpfull u should win a medal for being amazinnngggggggggggg
merlinlink41 6 months ago
it's impossible to make a string be equal to an int? Wtf... so my program is impossible!
EpicnessPivotMaster 6 months ago
@EpicnessPivotMaster thats because they are both variables
ints are JUST WHOLE NUMBERS, nothing else, strings are JUST BLOCKS OF TEXT, NOTHING ELSE
you CAN however use that %s to input the int within the quotes of your String
RazorSRaider 6 months ago
An if statement within an if statement
BWOOONG
Jonyinc 6 months ago
import java.util.Scanner;
public class MainClass { public static void main(String args[]){ int age = 60; if(age < 40) System.out.println("You still have some luster!"); else System.out.println("You have lost all of your luster!"); }
}
TOAST4005 6 months ago
Great tutorials...Need to cram this info into brain now. *Opens up head*
TOAST4005 6 months ago 16
An if statment within another if statement?
Ifception.
shadowscorp12 6 months ago in playlist Java 202
@shadowscorp12 haha
thenewbostonTV 5 months ago in playlist Java Programming Tutorials
@shadowscorp12 LOL genius
klakiti02 4 months ago
@shadowscorp12 ROFL
MrStropwen 2 months ago
@shadowscorp12 WE NEED TO GO DEEPER!
mcfundash1 2 months ago in playlist Java Programming Tutorials
@shadowscorp12 you ment an if statement within an if statement within the matrix
FTD0Productions 1 month ago
When you copy stuff over it just makes me type faster. You never learn 'till you have hands-on practice with this stuff.
Writing it helps more than typing really but you won't ever be writing out Java on paper.
Still, typing is better than coping because you remember it.
If I copied "System.out.println()" every time I would never remember it.
Msz9Music 7 months ago in playlist Java Programming Tutorials
@Msz9Music you can write syso and then press ctrl + space. Easy to remember, and faster.
Darthshepius 6 months ago
@Darthshepius Agree
RASHTG 6 months ago
omg you make java easy as eating chips , dude you are the best java teacher :)
ynishanthan 7 months ago 4
Ifception.
FALLASLEEPworld 7 months ago 3
Im going to start out with console apps then I will go further win apps I think that its a good way to get what I want and thanx for ur tuts btw ur the best subscribed :3
Gh0StSecurity 7 months ago
Comment removed
neosage11 7 months ago
wait wouldn else if not be better here
kirbyphanphan 7 months ago
computer: Ohhh come ON NOW I HAVE TO MAKE ANOTHER DECISION. THIS GUYS A RAM EATER :@
Cukan18 8 months ago
@Cukan18 wth? you got like 1mb of ram lol?
Phillie103 6 months ago
@Phillie103 Either 4 gigs or 8 gigs XD
Cukan18 6 months ago
all the brilliant words seem to be an understatement of your brilliance.
greenaddict123 8 months ago
if your 49, your old....
M3ssageT4k3n 8 months ago in playlist Java Tutorials
this is a vulgar display of skill,,,,,tnx bucky!!
kenshinvrix 8 months ago
You are to good !!
veizel96 8 months ago
tnx Bucky,, for making ur java tutorial as simple and clear as possible
kenshinvrix 8 months ago
This has been flagged as spam show
bucky you explain really good..My teacher could explain that good so i go through every tutorial of yours....Thanks a lot!!
itswalker23 8 months ago
bucky you explain really good..My teacher could explain that good so i go through every tutorial of yours....Thanks a lot!!1
itswalker23 8 months ago
I wonder how old YOU are though.
sirnickey 8 months ago
Comment removed
samcheong36 11 months ago
i like java more than python
drums4woodstock 11 months ago 4
import java.util.Scanner;
class apples{ public static void main (String args[]){ Scanner input = new Scanner(System.in); System.out.println("enter new num:"); int temp = input.nextLine(); if (temp < 50){ } }
}
guys y this is wrong cant get it hmf
vinziko 1 year ago
@vinziko You do realise that you need input.nextInt() for int temp NOT input.nextLine() which is for Strings..
kymykaly 1 year ago
@vinziko
Yea man you need to replace the "input.nextLine" to "input.nextInt" becuase you created a num not a string
OomorganoO 9 months ago
@OomorganoO don't forget the brackets! input.nextInt();
K2ACP 8 months ago
questionnnnn, why he doesnt use ctrl+c and ctrl+v as everyone else¿
xXxDiukexXx 1 year ago
@xXxDiukexXx Because everyone hates tutorials that use tutorial shortcuts. It makes it confusing, since you can't see the keyboard.
sheepnote 1 year ago
@sheepnote but its copy pasta... everyone know how to do it...
xXxDiukexXx 1 year ago
@xXxDiukexXx Some n00bs don't.
sheepnote 11 months ago
@sheepnote lol if they don't know how to do ctrl+c and ctrl+v they shouldn't learn any programming languale... xD
xXxDiukexXx 11 months ago
@sheepnote lol if they don't know how to do ctrl+c and ctrl+v they shouldn't learn any programming language... xD
xXxDiukexXx 11 months ago 71
@xXxDiukexXx It's command+c on my computer...
Msz9Music 5 months ago in playlist Java Programming Tutorials
@sheepnote i think u tried this!!!!!!
damus16 5 months ago
@xXxDiukexXx I cringe everytime I see someone using a laptop use the touchpad to right click and then copy and paste...
Seriously? So much easier to Ctrl+C and Ctrl+V...
witnesshistory 4 months ago
So let's copy that, because we're lazy!
hahaha :p
Nice tutorials man :)
ReveanceFX 1 year ago
the correct term is you are wise, not old
PGspy18 1 year ago
awesome ...... i didnt really thought dat java ll become simpler n funny after ur teaching!!!..... thnx bro!!! keep ur work going>>>>>>
Bucky r u teaching on any other languages???
almanju 1 year ago
awesome.... i didnt really though dat java ll become this much simpler n funny after ur teaching.... thanx bro!!!! keep ur work going...>>>
almanju 1 year ago
int age = 80;
console:
You are old
You are REALLY old!
UtubeCyborg 1 year ago
dang? ! You are legend?! can i borrow one of your eggs to place in my test? yah no just for a private tutor! LMFAO!
cpgamer368 1 year ago
the #'s of these overwhelm me
JayKoach 1 year ago
HOMEWORK ASSIGNMENT: Write two nested if statements, one under if (){ , the other under }else{ . Include User Input for the variable (shown in tutorial # 6).
jag9998 1 year ago 2
I actually figured this out by myself about 20 minutes ago.
KnuxTheTurtle 1 year ago
This has been flagged as spam show
Keep worming Russian girls gettop5.info
MrBuddikabuddika 1 year ago
I love your tutorials! I've seen 1 to 18 now in a row! Bucky ftw! :)
OlloX3 1 year ago
whats the difference between a nested if statement and a normal if statement?
Statifyable 1 year ago
@Statifyable Nested is a if statment withing a if statment that will only exceute if the most outer if statment was true
tkblackbelt2 1 year ago
@Statifyable A nested If/else statement is an if/else statement that is inside another if/else statement
Nickifyit 1 year ago
Thank you. You are way better than my college teacher!
Mustang5Speed 1 year ago
if i don't go to work tomorrow. i might get fired. else if i go will hate the job. else i quit i have no money.
AhYaOk 1 year ago
u are dng a grt job.....thnx..
kumasarukalith 1 year ago
I have a question.... how do i make it so that I can repeatedly input a string with the scanner. would i need to make multiple scanners or is there a way to do it with one. im making a number guessing game (of course xD) and i want to make it so that if i guess wrong then i am able to keep guessing till i am right.
Thank you in advance!
krnxmaster 1 year ago
@krnxmaster
i'm a beginner at this too, but let's see if i can get that right...
you don't have to make multiple scanners, just import the Scanner (import java.util.Scanner)
Then do that Scanner Input = new Scanner(System.in); thing
then put that all into the while loop that he talked about earlier.
that way you can input, check, reinput, recheck until you get the guess == number.
of course, you can set it to if guess == number then break out of the loop.
hope that made sense...
necoconecochan 1 year ago
@necoconecochan Thanks, i fixed it up and its working great now.
krnxmaster 1 year ago
@krnxmaster maybe there is a better way of doing this, but this is what I did:
import java.util.Scanner;
public class guessNumber{ public static void main (String[] args){ int number = 2; int userNumber; Scanner input = new Scanner(System.in); System.out.println("Please enter your number"); userNumber = input.nextInt();
while(userNumber != number) { System.out.println("You guess wrong try again"); userNumber = input.nextInt();} }
unrewritable 1 year ago
I noticed all this if else statements work with no curly braces. weird
carbidutz 1 year ago
@carbidutz it will only do 1 thing but if you use curlies than you can do anything (multiple) things.
Statifyable 1 year ago
@Statifyable @tkblackbelt2 yeah, I figured that out now but thanks.
Statifyable 1 year ago
good tutorials
frm683600 1 year ago 2
bucky rocks! \m/
lstrdlczz 1 year ago
that was again really easy, hope i get into the methods though...
great tutorials by the way
opamamut 1 year ago 2
hey bucky! I have one more question, what if there are more than 3 numbers involve in a nested if-else if statement? Like for example- if the number input from the user is >= 4 but must be <=9. what code should I put there? I've tried so many codes I saw on the net and whatever comes out to my mind but it did not worked.
terryramos 1 year ago
@terryramos if (x>=4 && x<=9) {
}
GxgForLife 1 year ago
@GxgForLife Thanks a lot!!! God Bless!! (^o^)
terryramos 1 year ago
@GxgForLife Can I ask for some more questions if ever I'll be needing some answers? Thanks (^o^)
terryramos 1 year ago
This has been flagged as spam show
@terryramos if (x>=4 && x<=9) {
}
GxgForLife 1 year ago
hey bucky! I'm a subscriber of this tutorial and I really Love it!. It's so helpful to me. But I have 1 more problem that remains unsolved. Using this NESTED IF statement. I've been trying to make a program with IF-else if inside If-else if statement. And I have noticed that the third and the rest If-else if statement I made inside If-else if were not working. What am I supposed to do?
terryramos 1 year ago
hey bucky! I'm a subscriber of this tutorial and I really Love it!. It's so helpful to me. But I have 1 more problem that remains unsolved. Using this NESTED IF statement. I've been trying to make a program with IF-else if inside If-else if statement. And I have noticed that the third and the rest If-else if statement I made inside If-else if were not working. What am I supposed to do?
terryramos 1 year ago
Hi Bucky, you're a good bloke. Where can I download your java tutorials at once please?
wilburchalz 1 year ago
your not lazy your miracle
mapusubani 1 year ago
love your tutorials, man lol
glenakin 1 year ago
Lol, the tutorials went from something really advanced to something really easy. :D
Haroids 1 year ago
nice,, simple but nice,, it helps me for my exam
orlando1729 1 year ago
Very helpfull,,,nice
shezars 1 year ago
Bucky,cause of you I have finish my Master work: Basic in Java programming. Dude thanks a lot. You really are great.
NeleKomnenovic 1 year ago
guess this is one the best tutorials in YouTube!!
WarlockAVAY 1 year ago
I agree. if statements are easier than all these methods and objects *sigh* but all are soo necessary...
EinBlutstein 1 year ago
The last 2 tutorials were really complicated.
jordan2172 1 year ago 3
ctrl + shift + f plz
hannesje2 1 year ago
you almost lost me there i was in your other advance programming tutorials
lovely2626 1 year ago
i want to know if nested class can be used in abstract class?
with a word, abstract class can have nested class too? i need an reason also why it can or cant used in abstract class. Thanks a lot :)
fakeface20 1 year ago
@fakeface20 Did you get an answer to this?
unrewritable 1 year ago
Awesome videos bucky! thanks
i have took a few java classes over a year ago in college then i switched my major and forgot most of what i learned and these have been great to refresh my java programming skills.
G0G0GEEK 1 year ago
This seems a bit out of place :P
This is a lot easier than all that class/object stuff b4 it
abovestand 1 year ago 3
Thanks Bucky!!! it was a great vid!!
hummary 1 year ago
Again, great stuff! Love the southern accent. Makes it feel more down to earth.
Fbiman93 1 year ago
Good tutorials, but I feel like the easier ones like these should have gone closer to the front.
IsAMank 1 year ago
Thanxxx!!!
Last tut was a bit complicated but this wan was TOTALLY easy explained!!
Hauserdav 2 years ago 3
He didn't write completely the last nested if statement that's why it compiled wrong.
CanisLupus1987 2 years ago
You are the man..ive been watching all your tutorials and ill plan to watch the rest... seriously u are the man!!!
camby4321 2 years ago 7
hey, please make a tutorial for nesting if statement to for loop statement please thanks
jincanlobo 2 years ago
glad this was here...wow this cleared my head about "nested" if/if else statements..."on to the next one, Click!"...
LawenceCodye 2 years ago 14
What if you want put something like if my bowler speed is more than 140 Kmph but less than 155 than my bowler is a fast bowler or else he is a slow bowler. How do we put a range. plz help
niksfloyd 2 years ago
This has been flagged as spam show
you can do that with: &&
gugionut 2 years ago
@niksfloyd
if (bowler_speed > 140 && bowler_speed < 155) {
-do whatever-
{
abovestand 1 year ago
I hope nobody over 75 is watching those vids :D
specimon 2 years ago 8
I've been through a ton of Java tutorials and these are simply the best! This is the furthest I've got as most of the other ones are discontinued.
smallbro978 2 years ago 173
Why are you adding "{", your only using 1 line in the statements..
stevenhavea 2 years ago
its a good habit?
ZanderMander 2 years ago
This comment has received too many negative votes show
Still shouldn't really be needed
stevenhavea 2 years ago
Good work!
TheFzxc 2 years ago 3
this is great. helped me alot at thet start of my educ. keep up the good work
stop190 2 years ago 111
The people that vote down these videos must pay millions of dollars for amazing teachers..
Nickifyit 1 year ago
Great
snsimports 2 years ago 6
Nice Vid
nguyennguyenkn 2 years ago 6
oh snap kewl!
marquesbrownlee 2 years ago 4
Nice man!
bulletboy6000 2 years ago 4