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:
![]() |
Install JCreator and JDK for Java Programming By Longhorndude08 This is a vid on how to install JCreator onto your computer, which can be used to create Java programs. --I Finally Got A New Microphone :)-- More videos on how to actually write programs will come later, and if you want to create programs without JCreator, message me and i'll release a vid on how to do that, but it shouldn't be necessary. Website: http://jcreator.com JDK & DOCs: http://java.sun.com/javase/downloads/... Tags: ide, install, intro, java, jcreator, jdk, longhorndude08, programming 1 Downloads - Last from: http://downthisvideo.com/ (Your Blog here!) |
![]() |
Java Programming #5 Basics: Scanner By Longhorndude08 Hey guys, welcome back! I'm much more experienced now, and wanted to get back into the jist of things with a vid over the Scanner class used for user input. import java.util.Scanner; or import java.util.*; Scanner sc=new Scanner(System.in); sc.next(); sc.nextLine(); sc.nextInt(); sc.nextDouble(); sc.next().charAt(0); CHALLENGE/PRACTICE: Have user input name, age, address and money in there wallet and print it out in an orderly fashion name formatted like so: Last, First, MI Tags: computers, five, java, longhorndude08, programming, scanner, tutorial, util 1 Downloads - Last from: http://downthisvideo.com/ (Your Blog here!) |
![]() |
Java Programming #4 Basics: Math Class By Longhorndude08 This is the fourth video on java programming--Math Class, a little more advanced, below is a little practice/challenge. code: Math.max(x,y); Math.min(x,y); Math.abs(x); Math.random(); Math.pow(x,y); Math.sqrt(x); CHALLENGE/PRACTICE: Assign two variables and print the max, min, power, absolute value, and the square root of both. Tags: abs, class, computers, four, java, longhorndude08, math, max, min, output, pow, programming, random, screen, sqrt, tutorial 1 Downloads - Last from: http://downthisvideo.com/ (Your Blog here!) |
![]() |
Java Programming #3 Basics: Basic Math By Longhorndude08 This is the third video on java programming--Basic Math, a little more advanced, below is a little practice/challenge. CHALLENGE/PRACTICE: create 5 different variables, some ints, some doubles and print the sum of them added, multiplied, the average, and each one moded by e/a other Tags: add, basics, computers, divide, java, longhorndude08, math, modulus, multiply, output, programming, screen, subtract, three, tutorial 1 Downloads - Last from: http://downthisvideo.com (Your Blog here!) |
![]() |
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!) |