Комментарии:
Thanks, your are awesome very clear and concise.
ОтветитьPracticing!
Ответитьwhat are the USEFUL applications of do while compared to other loops? if anyone can help id appreciate it thanks :)
ОтветитьHe teaches better than my tutor...
ОтветитьThank you so much this is really helpful.
Ответитьwhy dosent it print 16 because there was counter++
why does not increment the number
bracket should after args
ОтветитьBy the way, what program is he doing with this?
ОтветитьOMG THANK YOU SO MUCH!!!!! I ACTUALLY UNDERSTAND NOW
Ответитьyeet
ОтветитьYou explained this in 3 minutes thoroughly while it would take my teacher an entire week.
ОтветитьKeep going guys! Don't stop!
Ответитьdoes this only work on counters?
ОтветитьMy professor teaches us java from power points. FUCKING POWERPOINTS!
ОтветитьYou are best !!!!
ОтветитьSystem.out.println("THANK YOU");
ОтветитьDO WHILE OF COMPOUND INTEREST
/**************************************************/
int i =1;
double amount,
rate= 0.01;
Scanner s = new Scanner (System.in);
/*****************************/
System.out.print("input how many day: ");
int day = s.nextInt();
System.out.print("input the principal: ");
double p = s.nextDouble();
/**************/
do {
amount = p*Math.pow(1+rate, i);
System.out.printf("%d\t%4.2f\n",i,amount);
i++;
}while (i <=day);
}
}
Watching This A Week Before my first java exam wish my lick guys!😂
ОтветитьPsycho alpha disco beta bio aqua do loop
Ответитьin evry video u can find one person commenting the program in better way or modified way
ОтветитьWhat program are u using to run code?
ОтветитьFinally understood the do while loop, thx dude!
ОтветитьThanks Bucky! I love how simplified you've made these tutorials and with clear explanations! :)
Ответитьwhy does my teacher teach us in the whiteboard? i will never know.
ОтветитьEsay and simple curse
ОтветитьThis is gorgeous
Ответить4 mb video download :'(
ОтветитьI love you so much. My class textbook was not helping at all. Its only the second week in class and the instructor told us to do for, while, and do while loops as our second assignment, the first 6 chapters of our textbook has zero mention of loops. I was getting scared thinking "is it just me?!" but thanks to your videos i was able to finish the assignment on time. sigh of relief
ОтветитьI love you
Ответитьcomputers are so cute
ОтветитьThis is why I take online courses lol, teachers are useless (most of them).
Ответить:)
ОтветитьI love your tutorials! They're short, simple, and straight to the point. They're really helping my exam revision!
ОтветитьThis looks a awfully a lot alike, a lot, alike. Wait, an awfully lot alike, yeah that's right.
ОтветитьJava simple aanu....powerful aanu
ОтветитьYou are my teacher now. subscribing.
ОтветитьEPICCC
ОтветитьThis course is absolutely AMMMMAAAZEEEE
Ответитьpublic class latihan1{
public static void main(String[] args){
int counter = 0;
while(counter < 10){
counter++;
System.out.println(counter);
}
}
}
is the same right??
Very useful!
Ответитьbest at 1.75x
Ответитьwhy not just execute the statement once and then run the while loop, without need for the do
Ответитьthe funkiest loop in Java
Ответитьbest teacher ever.
thanks Bucky!!
You're amazing- Thank you 👍
Ответитьpublic class CompoundInterest {
public static void main (String[] args) {
double amount = 10000;
double rate = 0.01;
for (int year = 1; year<=10; year++) {
amount = amount + (amount * rate);
System.out.println ("The amount in year " + year + " is " + amount);
//I used a different method than the bucky tutorial!!!
//Let's just see how power functions work though
}
double gedi = 100;
//Let's make this to the power of 2
gedi = Math.pow(gedi, 2);
System.out.println(gedi);
}
}