Kaweesa Rodney
Kaweesa Rodney
  • 2
  • 80 407
Kaweesa Rodney Live Stream
มุมมอง: 0

วีดีโอ

how to randomly change images using an array in phphow to randomly change images using an array in php
how to randomly change images using an array in php
มุมมอง 1.4K8 ปีที่แล้ว
simple java calculator program using methodssimple java calculator program using methods
simple java calculator program using methods
มุมมอง 79K8 ปีที่แล้ว

ความคิดเห็น

  • @tomiaalto1156
    @tomiaalto1156 2 ปีที่แล้ว

    return x-y;

  • @bharanikuppusamy2448
    @bharanikuppusamy2448 3 ปีที่แล้ว

    Thank you so much sir.for giving this video.very easily understanding..once again tq so much

  • @sakorsa947
    @sakorsa947 3 ปีที่แล้ว

    Niceee vid!!!!

  • @Caliber101
    @Caliber101 3 ปีที่แล้ว

    what if i dont want to use random?, what is the code for specific img to be printed in the server

  • @akbarzain8751
    @akbarzain8751 3 ปีที่แล้ว

    Thank you🥺

  • @AnonymousM4
    @AnonymousM4 3 ปีที่แล้ว

    ("How can I get this code");

  • @arkhybronze249
    @arkhybronze249 4 ปีที่แล้ว

    Why don't show how to save file? What about for newbie?

  • @reyshephlyngdoh9295
    @reyshephlyngdoh9295 4 ปีที่แล้ว

    Switch is more convenient and faster u no

  • @bhandariinteriors595
    @bhandariinteriors595 4 ปีที่แล้ว

    Thank you for ,making a nice video 👌🏻👍🏻

  • @reymarknapealbao4257
    @reymarknapealbao4257 4 ปีที่แล้ว

    What is mani?

  • @reymarknapealbao4257
    @reymarknapealbao4257 4 ปีที่แล้ว

    Can you give me those code?

  • @mustafaqkothari4425
    @mustafaqkothari4425 5 ปีที่แล้ว

    Can it only do 2 digits

  • @msann2060
    @msann2060 5 ปีที่แล้ว

    Thanks for sharing im doing my assignment in programming thanks for this now i know what to do ♥️👍♥️♥️♥️

  • @طمأنينة-ظ9ظ
    @طمأنينة-ظ9ظ 5 ปีที่แล้ว

    Thank you so much.. This calculator program is very useful and help me in my assignment..

    • @ianjuelz2763
      @ianjuelz2763 3 ปีที่แล้ว

      You probably dont give a shit but does anyone know of a way to get back into an Instagram account?? I was dumb forgot the password. I would appreciate any help you can offer me

  • @arkavlogs1991
    @arkavlogs1991 5 ปีที่แล้ว

    how to call this method

  • @shirishkulkarni8880
    @shirishkulkarni8880 6 ปีที่แล้ว

    can you send me the code

  • @shiwanisingh1509
    @shiwanisingh1509 6 ปีที่แล้ว

    Nice video

  • @fire9fly3
    @fire9fly3 6 ปีที่แล้ว

    Wouldn't a switch statement be much easier than else, else if, etc?

    • @tusifuedison5867
      @tusifuedison5867 6 ปีที่แล้ว

      you are rigth and that switch should be in do while loop;

  • @SumitKumar-fn3gj
    @SumitKumar-fn3gj 6 ปีที่แล้ว

    I love it.

  • @siddheshmalap9939
    @siddheshmalap9939 7 ปีที่แล้ว

    really this vido was help full

    • @bay8834
      @bay8834 5 ปีที่แล้ว

      import java.util.*; class m{///la reponse a la question selon le cas ? //creer une autre fonction qui interprete l age int age; String hobby; String name; String nom; public void your_hobby(String hobby,int age,String name,String nom){ switch(name){ case "jalal":System.out.println("tu n es pas jalla lolo"); default:System.out.println("tu connais jalila "+nom+" ?"); } switch (hobby){ case "baskettball":System.out.println("watsure favorite basket team?");break; case "football":System.out.println("hahaha mr "+name+"u are in"+age+"'s and you love foot ball , its a nice sport barca or real? ");break; default:System.out.println("je connais pas ce truk c est quoi le "+hobby);break; } } public void ageinterpret(int age){ if (age <50){ System.out.println("you are yong="); } if (age>50){ System.out.println("tu est pere donc "+age+" ans c est l age d avoir une famille"); } } public void reponse(int x){ switch (x) {case 3:System.out.println("j ais pas compris");break; case 1: ;System.out.println("ca va ?");break; case 2:System.out.println("salut ca va ?");break; } } } public class Main { public static void main(String[] args) {System.out.println("hello"); Scanner s =new Scanner(System.in); String x=s.next(); m n=new m(); switch(x){ case "bonjour":n.reponse(1);break; case "salut":n.reponse(2);break; default :n.reponse(3);break; } System.out.println("ton nom s il vous plais? "); n.nom=s.next(); System.out.println("ton prenom"); n.name=s.next(); System.out.println("tes "+n.name+" "+n.nom); System.out.println("hravis mr "+n.name+" quel age a tu?"); n.age=s.nextInt(); n.ageinterpret(n.age); System.out.println("wats ure hobby"); n.hobby=s.next(); n.your_hobby(n.hobby,n.age,n.name,n.nom); System.out.println("Hello World"); } }