Java tutorial for beginners with easy-to-follow content. Buy the complete Java programming course (15 more Java tutorials) at Duckademy: …
Original source
Java tutorial for beginners with easy-to-follow content. Buy the complete Java programming course (15 more Java tutorials) at Duckademy: …
Original source
31 responses to “Java tutorial for beginners with clear explanations – Easy-to-follow Java programming”
Want to learn more Java? Buy the complete Java course (15 more videos) now with 35% off.
Check out the course: https://www.duckademy.com/course/java-programming
Thank you very much! This was very helpful.
Demo, Code and tutorials C! Helped me a lot – Happy Coding! http://yabuilder.com/8BLb
whats up with
the voice
Do you go through graphics in your classes?
why are you so tired?
GREAT! I will like to see the other videos…… On my way to becoming a pro java programmer ;D
can you help me how i get the next video of this video lecture?
I just purchased the course. I'm so excited to start learning Java from it 🙂
nice job.
download java with netbeans from here : http://skamason.com/8o8B
Can we make application on netbems
It crashes for me.
this is the first tutorial that is for beginners that covers absolutely EVERYTHING great job Duckademy IT courses
This man knows well what is doing ! Thanks ! but your https://www.duckademy.com/course/java-programming not working
Thank you so much for your time and uploading
Great ********
marking my spot 38:03
I really enjoyed this. It was probably too fast for someone who has never seen the language before but I already have a grasp of the fundamentals of Java so this was very refreshing to watch.
https://goo.gl/DBuvtP
why do we put in double celcius etc
ooh this guy is so good thanks bruv
Hi! I have a question. I tried to modify the "Fightning" code from your example by adding a loop while either the character's or monster's HP is different than 0, but I don't know how to make the remaining HP from the first fight counts for the consecutive fights (ex: if the first fight I got attacked and 90 HP remained from 100, the damage from the next battle will be taken from 90 and not 100). I will copy my code here, Thanks!
import java.util.Scanner;
import java.util.Random;
public class Fightning {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
System.out.println("Attack value of monster: ");
int monsterAttack= sc.nextInt();
System.out.println("Defense value of monster: ");
int monsterDefense= sc.nextInt();
System.out.println("Life points of monster: ");
int monsterLP= sc.nextInt();
System.out.println("Attack value of character: ");
int characterAttack= sc.nextInt();
System.out.println("Defense value of character: ");
int characterDefense= sc.nextInt();
System.out.println("Life points of character: ");
int characterLP= sc.nextInt();
int characterremainingLP= characterLP – (monsterAttack – characterDefense);
int monsterremainingLP= monsterLP – (characterAttack – monsterDefense);
Random generator= new Random();
int characterDice = generator.nextInt(6)+1 + generator.nextInt(6)+1;
System.out.println("You rolled: "+ characterDice);
int monsterDice = generator.nextInt(6)+1 + generator.nextInt(6)+1;
System.out.println("Your opponent rolled: "+ monsterDice);
if (characterDice > monsterDice){
System.out.println("You attack!");
if (characterAttack > monsterDefense){
System.out.println("Nice hit! nMonster remaining LP: "+ monsterremainingLP);
if (monsterremainingLP <= 0)
System.out.println("Congratulations! You defeated the enemy");
}else{
System.out.println("You did no damage!");
}
}
else{
System.out.println("Monster attacks!");
if (monsterAttack > characterDefense)
System.out.println("Ouch! That hurts! nRemaining LP: "+ characterremainingLP);
if (characterremainingLP <= 0){
System.out.println("You died");
}else{
System.out.println("You received no damage");
}
}
}
}
should I be trying this drunk?
best tutorial for beginner….so helpful..thanks a lot
Good tutorial 🙂 Others dont explain everything and i dont understand what they do.
Excellent!!!!!!!!!!!!!!!
This guy's Java presentations are excellent and have no competitors that I can find. My only negative hardly counts over against the clarity, consideration, and outstanding content of his videos; yes, for less that a mere $20 bucks (US) you can download his excellent videos on Java.
I started my search for Java resources a week ago, which includes a subscription to Lynda.com, and believe me Fisher's Java presentation does not hold a candle to this guys content and presentation skills. My negative, his accent. Otherwise, I STRONGLY RECOMMEND making this Duckademy IT course part of you education.
eddie evans – ClimateDeception.Net
amazing!
How to download java netbeans ide 6.5.1
damn, where can i find a mouse that has such a tremendous click sound
God bless you
great video!
If i learn this tutorial will i be able to use android studio?