Copy the link of the video page and paste it here:
Example: http://www.youtube.com/watch?v=a7FQPMiph9M
NEW!. You can download videos from Vimeo!. :-)
Utils:
![]() |
Java Programming #2 Basics: Data Types By Longhorndude08 This is the second video on java programming--Data Types, a little more advanced, below is a little practice/challenge. CODE: public class variables{ public static void main(String[]beans){ char a='A'; String b="I Like Cheese"; int c=10; double d=1.5; float e=5462.56235426457345754f; long f=9999999999l; System.out.println(a+"\n"+b+"\n"+c+"\n"+ d+"\n"+e+"\n"+f); } } CHALLENGE/PRACTICE: Create Strings containing your First, Middle and last name. Ints that contain your age and birth year. And doubles that print your salary and the time (use a "." insteas of a ":") Tags: basics, computer, computers, data, java, longhorndude08, output, programming, screen, system.out.println();, tutorial, two, types 1 Downloads - Last from: http://downthisvideo.com (Your Blog here!) |
![]() |
Java Programming #1 Basics: Screen Output ("Hello World") By Longhorndude08 This is the first video on java programming, pretty simple, below is a little practice/challenge. When I first tried to upload this video, it was like 1 min. 30 sec. too long, so if its confusing, i'll send u the other one, and if u want i'll send u the one I recorded which the audio is off, so ill probably delete it soon. CODE: System.out.print(ln)("output"); \n --new line \t --tab \" --" \\ --\ publid class fileName{ public static void main(String[]beans){ methods mth=new methods(); mth.name(); } } class methods{ public void{ System.out.println("HELLO YOUTUBE"); } } CHALLENGE/PRACTICE: write a program to output your initials using 5 lines with the characters \,|,/,_,-,(,),etc. BONUS: Do it using one System.out.print(); Tags: basics, computers, hello, java, longhorndude08, one, output, programming, screen, system.out.println();, tutorial, world 2 Downloads - Last from: (Your Blog here!) |