1.For those in command prompt java --version didnt work instead try java -version 2.Make sure you had all the updates done for java before you start programming because of that you may get error like could not run main class 1:24:27 what an explanation man! Damn clear👌 2:47:33 import java.lang.System; class hello{ public static void main(String args[]) { for(int i=10;i>=1;i=i-1){ System.out.println(i); }
} } 3:05:56 import java.lang.System; import java.util.Scanner; class hello{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("Enter value of a: "); int a = scan.nextInt(); System.out.println("Enter value of b: "); int b = scan.nextInt(); for(int i=a;i
2:31:51 import java.util.Scanner; class j{ public static void main(String args[]){ Scanner sc= new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); String result=(a>b)?"a is bigger":"b is bigger"; System.out.println(result); } }
3:37:48 import java.io.*; import java.util.*; class print { public static void main(String args[]) { Scanner raja = new Scanner(System.in); System.out.println("Enter Your array size:"); int size = raja.nextInt(); int [] marks = new int[size]; System.out.println("enter array numbers:"); for(int i=0;i
It's so helpful and you made everything so simple and clear,Thank you so much for your efforts... Always coming back to your tutorials after several other channels..
2:32:00 package emc; import java.util.Scanner; class Practice { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num1 = scan.nextInt(); int num2 = scan.nextInt(); scan.close(); String result = num1>num2 ? "num1 is greater than num2" : "num2 is greater than num1" ; System.out.println(result); } }
Hii bro yennakuh terminal la run pandra apo error varthu bro epdi na error: no Class declared in source file apdi nuh varthu bro adha epdi bro run panndrathu
2:32:03 Import.java.util.Scanner; Class hello{ Public static void main(string args[]) { Scanner scan = new scanner (system.in); Int a = scan.nextInt(); Int b = scan.nextInt(); String result = a >b?"yes":"no"; System.out.print(result);
just now completed this series it will be so helpful for beginners and makes us feel confident please continue this series further. the way you explain is awesome keep going best of luck thank you ❤
Thank you so much for your amazing Python and Java courses! Your teaching style is clear and engaging, making complex concepts easy to understand. You've truly helped me improve my skills and confidence in programming. Keep up the great work, Hope We Are Expecting More Content From You Hats Off Man .
3:31:40 import java.io.*; import java.util.*; class twotable { public static void main(String args[]) { Scanner raja = new Scanner(System.in); System.out.println("Enter your table:"); int j = raja.nextInt(); for(int i=1;i
3:30:05 import java.util.Scanner; public class array { public static void main(String args[]){ System.out.println("enter the number of elements in the array:"); Scanner a= new Scanner(System.in); int b = a.nextInt(); int[] num = new int[b]; for(int i=0;i
3:30:00 import java.util.Scanner; public class array3 { public static void main(String[] args) { Scanner scan= new Scanner(System.in); int[] num= new int[10];
2:28:04 import java.util.Scanner; class forLoopActivity1{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); System.out.print("Enter starting value: "); int a = sc.nextInt(); System.out.print("Enter ending value: "); int b = sc.nextInt(); for(int i=a;i
First .I am not like java and I am not intrest it.but now I can enjoy to learn the java.java it's my favourite language. Thank you so much Anna. Jesus bless you Anna
3:05:55 import java.util.Scanner; class numDivBy3Or5 { public static void main(String[] args){ Scanner sc = new Scanner(System.in); for (int i=0;i= 1 && i
3:32:07 import java.util.Scanner; class ArrayActivity2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter the size of an array: "); int size = sc.nextInt(); int[] arr = new int[size];
for (int i = 0; i < size; i++) { System.out.print("Enter number at index " + i + ": "); int num = sc.nextInt(); arr[i] = num; }
System.out.print("[ "); for (int i = 0; i < size; i++) { System.out.print(arr[i]); if (i < size - 1) { System.out.print(", "); } } System.out.print(" ]"); sc.close();
2:47 print in reverse order in for loop import java.util.*; class Main{ public static void main(String args[]) { for(int i=5;i>=1;i--) { System.out.println(i); } } }
3:05:40 import java.lang.System; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner ob=new Scanner(System.in); int i=ob.nextInt(); int j=ob.nextInt(); int howmany=0; for( i=1;i
7:24:44 interface Readable{ void read(); } interface Writable{ void write(); } interface Storable{ void store(); } class File implements Readable, Writable, Storable{ public void write() { System.out.println("Writing the data"); } public void read() { System.out.println("Reading the data"); } public void store() { System.out.println("The data has been stored"); } } public class NewMAin4 { public static void main(String[] args) { File f1 = new File(); f1.read(); f1.write(); f1.store(); } }
Bro..... watching your videos helps to understand the coding language easily and effectively.keep uploading and educating us by your simple way of teaching.And pls upload a video for XML. I'm waiting for that.
6:08:50 package practice_java; class vehicle { String brand; int year;
void startengine() {
} } class car extends vehicle { String fueltype; @Override void startengine() { System.out.println("the car engine start"); } void driving() { System.out.println("car is driving"); } } class truck extends vehicle { int loadcapacity; @Override void startengine() { System.out.println("truck engine start"); } void haul() { System.out.println("the truck is hauling"); }
} public class cars { public static void main(String[] args) {
car c = new car(); c.brand = "benz"; c.year = 1995; c.fueltype = "disel"; System.out.println("the car brand name is:"+c.brand); System.out.println("the launch year is:"+c.year); System.out.println("the car fuel type is :"+c.fueltype); c.startengine(); c.driving();
truck t = new truck(); t.brand = "TATA"; t.year = 1992; t.loadcapacity = 10000; System.out.println("the truck brand is:"+t.brand); System.out.println("the launch year is:"+t.year); System.out.println("the truck load capacity is:"+t.loadcapacity); t.startengine(); t.haul();
Ternary operator la two integer number which number greater than Class hello { Public static void main(string args[]) { Boolean number= true; Int a=24; Int b=35; String result=number?"number a greater than"+a:"number b greater than"+b; System.out.print(result); } } Output: Number a greater than 23
Thank you so much Anna🤝. JAVA learn pannanum nu desire erundhadhu. Naa oru Computer science student dha. Java coding romba kashtama erukkuum nu learn pannama erundhuta. But unga videos paakum bodhu Learn pannanum nu interest vandhadhu. Self learning dha pannitu erukka na Ennum technologies oriented aa nariyaa videos poduvinga nu hope la erukkaa May God bless you anna🤍
public class Greens{ public static void main (String[ ]args) { int num = 19; if(num%2 == 0){ System.out.println("Even"); } else { System.out.println("Odd"); } } }
2:19:16 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Enter the color (red, yellow, green):"); String color = scan.nextLine(); // Check the color if (color.equalsIgnoreCase("red")) { System.out.println("Stop"); } else if (color.equalsIgnoreCase("yellow")) { System.out.println("Get ready"); } else if (color.equalsIgnoreCase("green")) { System.out.println("Go"); } else { System.out.println("Invalid color entered"); } } }
I have a request that for sql u hav only upload few topics. Please kindly upload other topics like joins, subqueries, windows functions, operators as well. & thank you so so much for all ur efforts bro!
3:05:18 import java.util.Scanner; import java.lang.System; class ter{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); //int a = scan.nextInt(); //nt b = scan.nextInt(); int i ; int count=0;
import java.util.Scanner; public class TrafficLight { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("What is the color of the traffic light? "); String color = scanner.nextLine(); switch (color) { case "red": System.out.println("Stop."); break; case "yellow": System.out.println("Get Ready."); break; case "green": System.out.println("Go."); break; default: System.out.println("Invalid color."); } scanner.close(); } }
TERNARY OPERATOR 1) import java.util.Scanner; class test{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); String greater = (a > b)? "a":"b"; { System.out.println("the greater number is:" + greater); } } } output: 15 10 the greater number is:a
} interface writeable{ void writeable(); } interface storable{ void storable(); } class c implements writeable,readable,storable{
@Override public void readable(){ System.out.println("read"); } @Override public void writeable(){ System.out.println("write"); } @Override public void storable(){ System.out.println("storable"); } } //interface model public class main1 { public static void main(String[] args) { c c1=new c(); c1.readable(); c1.writeable(); c1.storable(); //inter face model } } 7:24:43
public class apple{ int apple_price = 20; int apple_count = 5; void total_money() { System.out.println(apple_price*apple_count); } public static void main(String args[]) { apple obj1 = new apple(); obj1.total_money(); } }
3:31:40 import java.util.Scanner; class aaron { public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("ENTER A NUM: "); int num = scan.nextInt(); for (int i = 1; i
Data Structures and Algorithms next upload pannunga
C++ and data structures and algorithms
Java data structure and algorithms upload pannunga brother
2:47:33
public static void main(String[] args) {
for(int i=5;i>=1;i=i-1){
System.out.println(i);
}
}
start with-----class Main{
1.For those in command prompt java --version didnt work instead try java -version
2.Make sure you had all the updates done for java before you start programming because of that you may get error like could not run main class
1:24:27 what an explanation man! Damn clear👌
2:47:33
import java.lang.System;
class hello{
public static void main(String args[])
{
for(int i=10;i>=1;i=i-1){
System.out.println(i);
}
}
}
3:05:56
import java.lang.System;
import java.util.Scanner;
class hello{
public static void main(String args[])
{
Scanner scan = new Scanner(System.in);
System.out.println("Enter value of a: ");
int a = scan.nextInt();
System.out.println("Enter value of b: ");
int b = scan.nextInt();
for(int i=a;i
06:08:23 - Hierarchical inheritance
06:08:57-
package practice_java2;
class vehicle{
String brand;
int year;
void startEngine() {
System.out.println("The engine is starting..");
}
}
class car extends vehicle{
String fuelType;
@Override
void startEngine() {
System.out.println("Car engine starts");
}
void drive() {
System.out.println("car is driving");
}
}
class truck extends vehicle{
int loadCapacity;
@Override
void startEngine() {
System.out.println("Truck engine starts");
}
void haul() {
System.out.println("Truck is hauling");
}
}
public class mainclass {
public static void main(String[] args) {
car c = new car();
c.brand="Tata";
c.year=2024;
c.fuelType="full";
c.startEngine();
c.drive();
truck t = new truck();
t.brand = "xyz";
t.year=2023;
t.loadCapacity=20;
t.startEngine();
t.haul();
}
}
2:31:51 import java.util.Scanner;
class j{
public static void main(String args[]){
Scanner sc= new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
String result=(a>b)?"a is bigger":"b is bigger";
System.out.println(result);
}
}
3:37:48
import java.io.*;
import java.util.*;
class print
{
public static void main(String args[])
{
Scanner raja = new Scanner(System.in);
System.out.println("Enter Your array size:");
int size = raja.nextInt();
int [] marks = new int[size];
System.out.println("enter array numbers:");
for(int i=0;i
2:19:16
Import java.util.scanner;
Clas mady{
public static void main(string args[]){
Scanner mady=new Scanne(System.in);
String color=mady.nextLine();
If(color.equlas("red")){
System.out.println("stop");
}
Else if(color.equlas("yellow")){
System.out.println("get ready");
}
Else if(color.equlas("green")){
System.out.println("go");
}
}
}
crctaaa idhu
Scanner sc=new Scanner(System.in) -> donot keep class ad object the same name, and equals() -> spelling need to be taken care.
enpa evlo mistake
Class speeling wrong and Scanner ku capital letter use pannanum then new scanner ku r podanum
It's so helpful and you made everything so simple and clear,Thank you so much for your efforts... Always coming back to your tutorials after several other channels..
I'm so glad!
தெய்வமே 🙏 நன்றிகள் பல தெய்வமே ❤
2:32:00
package emc;
import java.util.Scanner;
class Practice {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num1 = scan.nextInt();
int num2 = scan.nextInt();
scan.close();
String result = num1>num2 ? "num1 is greater than num2" : "num2 is greater than num1" ;
System.out.println(result);
}
}
Hats off to your effort bro. Your videos are very helpful for all tamil medium students who wants to learn programming🎉❤
Glad to hear that
Romba nandri anna .....idha sem ku java dha irukku...unga video ku na romba naala wait pannitu irundhen🥰🥹
Bro neegah Anna University sem 3 ah
@@Useryoutubegso athu doli nu unaku theiryathu apdithana? Brw💀
Always Welcome!
Hii bro yennakuh terminal la run pandra apo error varthu bro epdi na error: no Class declared in source file apdi nuh varthu bro adha epdi bro run panndrathu
🙌@@Useryoutubeg
3:05:50
class aaron {
public static void main(String args[])
{
for (int i=1; i
class HelloWorld {
public static void main(String[] args) {
int count=0;
for(int i=1;i
Bro Comeback 🗿🔥. Continue uploading these type useful courses it helps students and freshers ❤
I will try my best
@@ErrorMakesClever Time Lapse to the Video please
@@ErrorMakesCleverbro c program sollu bro ples because collge la atham kakurangha 😁🤧🤧
@@ErrorMakesClever bro material for this course attach pannuga for refereence
@@ErrorMakesCleverdata structure and algorithms briefaa podunga bro
Not only for learn this video is useful. For recall the java also it's useful anna.
Glad to hear!
3:30:01
class main{
public static void main(String args[])
{
int[] num = new int[10];
num[0] = 1;num[1] = 2;num[2] = 3;num[3] = 4;num[4] = 5;num[5] = 6;num[6] = 7;num[7] = 8;num[8] = 9;num[9] = 10;
//print all the values using for loop
for(int i=0;i
Data structure and algorithms upload pannunga bro 🙌 💜
2:32:03
Import.java.util.Scanner;
Class hello{
Public static void main(string args[])
{
Scanner scan = new scanner (system.in);
Int a = scan.nextInt();
Int b = scan.nextInt();
String result = a >b?"yes":"no";
System.out.print(result);
4:35:20
public class addition {
void sum(int num1,int num2 )
{
System.out.println("sum: "+(num1+num2));
}
void sub(int num1,int num2)
{
System.out.println("sub: "+(num1-num2));
}
void mul(int num1,int num2)
{
System.out.println("mul: "+(num1*num2));
}
void div(int num1,int num2)
{
System.out.println("div: "+(num1/num2));
}
public static void main(String[]args)
{
addition obj1 = new addition();
obj1.sum(10,2);
obj1.sub(10,2);
obj1.mul(10,2);
obj1.div(10,2);
}
2:47:33 class forLoopExample{
public static void main(String[] args){
for(int i=10;i>=1;i--){
System.out.println(i);
}
}
}
3:29:57
import java.util.Scanner;
class Main
{
public static void main(String args[])
{
int [] A = {0,1,2,3,4,5,6,7,8,9};
A[0]=10;
A[1]=20;
A[2]=30;
A[3]=40;
A[4]=50;
A[5]=60;
A[6]=70;
A[7]=80;
A[8]=90;
A[9]=100;
for(int i=0;i
2:50:53
class forLoopExample{
public static void main(String[] args){
for(int i=0;i
4:35:19 public class calculator{
void sub(int num1,int num2)
{
System.out.println(num1-num2);
}
void mul(int num1,int num2)
{
System.out.println(num1*num2);
}
void div(int num1,int num2)
{
System.out.println(num1/num2);
}
public static void main(String args[]){
calculator obj1 = new calculator();
obj1.sub(10,5);
obj1.mul(8,2);
obj1.div(20,10);
}
}
Completed the Java Series, Thank you!!
Welcome and keep learning!
just now completed this series
it will be so helpful for beginners and makes us feel confident please continue this series further.
the way you explain is awesome keep going best of luck
thank you
❤
You will best . program channel in south india
Thanks for your support and your kind words.
Bro spring boot?
Print the reverse order of numbers in 5to 1
Class demo{
Publis static void main string [] args){
For(i=5;i>=1;i=i-1);
System.out.println(i);
Thank you so much for your amazing Python and Java courses! Your teaching style is clear and engaging, making complex concepts easy to understand. You've truly helped me improve my skills and confidence in programming. Keep up the great work, Hope We Are Expecting More Content From You Hats Off Man .
Thanks for your kind words. More content is on the way!
Bro enaku java va nenachu rombo bayama irunchu 😢ana intha video dailyum paka start panniruken 🥹ipotha pru hope vanthruku thank you ❤️ bro 😩
3:31:40
import java.io.*;
import java.util.*;
class twotable
{
public static void main(String args[])
{
Scanner raja = new Scanner(System.in);
System.out.println("Enter your table:");
int j = raja.nextInt();
for(int i=1;i
Class hello {
Psvm(){
Int n1 =99;
Int n2 = 99;
If(n1==n2){
Soup("equal");
}
Else {
Soup("not equal");
}
}}
Waiting for this bro.. thank u so much... apdiye Data structures and algorithms with java language poteengana nalla irukkum
happy, it helps!
2-11-24 progress//4:14:38
3-11-24 progress //5:36:36
3:30:05
import java.util.Scanner;
public class array {
public static void main(String args[]){
System.out.println("enter the number of elements in the array:");
Scanner a= new Scanner(System.in);
int b = a.nextInt();
int[] num = new int[b];
for(int i=0;i
3:30:00
import java.util.Scanner;
public class array3 {
public static void main(String[] args) {
Scanner scan= new Scanner(System.in);
int[] num= new int[10];
for(int i=0;i
2:28:04
import java.util.Scanner;
class forLoopActivity1{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
System.out.print("Enter starting value: ");
int a = sc.nextInt();
System.out.print("Enter ending value: ");
int b = sc.nextInt();
for(int i=a;i
3:29:55 import java.util.Scanner;
class Main{
public static void main(String args[])
{
int[] array ={0,1,2,3,4,5,6,7,8,9,10};
for(int i=0;i
thank you sooo much brotherrr really means a looot please keep on doing this
Your Welcome!
3:29:46
import java.util.*;
class arrayActivity{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int[] arr = {12,24,36,48,60,72,84,96,108,120};
System.out.print("[");
for(int i=0;i
3:29:45
import java.util.Scanner;
class aaron {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int num[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
for (int i = 0; i
3:30:00 prgm--public static void main(String arg[]) {
int b[]= {2,3,4,5,6,7,8,8,9,9};
for(int i=0;i
First .I am not like java and I am not intrest it.but now I can enjoy to learn the java.java it's my favourite language. Thank you so much Anna.
Jesus bless you Anna
You are most welcome
3:05:55
import java.util.Scanner;
class numDivBy3Or5 {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
for (int i=0;i= 1 && i
6:08:24 - hierachal inheritance
package Arraylist;
public class q3 {
public static void main(String[] args) {
int[] num={1,2,3,4,5,6,7,8,9,10};
for(int i=0;i
3:32:07
import java.util.Scanner;
class ArrayActivity2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter the size of an array: ");
int size = sc.nextInt();
int[] arr = new int[size];
for (int i = 0; i < size; i++) {
System.out.print("Enter number at index " + i + ": ");
int num = sc.nextInt();
arr[i] = num;
}
System.out.print("[ ");
for (int i = 0; i < size; i++) {
System.out.print(arr[i]);
if (i < size - 1) {
System.out.print(", ");
}
}
System.out.print(" ]");
sc.close();
int mid = size / 2;
System.out.println("
Middle element: " + arr[mid]);
}
}
3:05:23
public class Main
{
public static void main(String[] args) {
for(int i=0;i
2:47 print in reverse order in for loop
import java.util.*;
class Main{
public static void main(String args[])
{
for(int i=5;i>=1;i--)
{
System.out.println(i);
}
}
}
3:05:40
import java.lang.System;
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner ob=new Scanner(System.in);
int i=ob.nextInt();
int j=ob.nextInt();
int howmany=0;
for( i=1;i
7:24:44
interface Readable{
void read();
}
interface Writable{
void write();
}
interface Storable{
void store();
}
class File implements Readable, Writable, Storable{
public void write() {
System.out.println("Writing the data");
}
public void read() {
System.out.println("Reading the data");
}
public void store() {
System.out.println("The data has been stored");
}
}
public class NewMAin4 {
public static void main(String[] args) {
File f1 = new File();
f1.read();
f1.write();
f1.store();
}
}
Highly useful, learned java in 48 hours.
Thank you
Bro..... watching your videos helps to understand the coding language easily and effectively.keep uploading and educating us by your simple way of teaching.And pls upload a video for XML. I'm waiting for that.
Glad to hear that
You are an incredible tutor
Can you please upload DSA in java too
heiaraichal inharitance 6:08:21 / 8:30:48
6:08:50
package practice_java;
class vehicle
{
String brand;
int year;
void startengine()
{
}
}
class car extends vehicle
{
String fueltype;
@Override
void startengine() {
System.out.println("the car engine start");
}
void driving()
{
System.out.println("car is driving");
}
}
class truck extends vehicle
{
int loadcapacity;
@Override
void startengine() {
System.out.println("truck engine start");
}
void haul()
{
System.out.println("the truck is hauling");
}
}
public class cars {
public static void main(String[] args) {
car c = new car();
c.brand = "benz";
c.year = 1995;
c.fueltype = "disel";
System.out.println("the car brand name is:"+c.brand);
System.out.println("the launch year is:"+c.year);
System.out.println("the car fuel type is :"+c.fueltype);
c.startengine();
c.driving();
truck t = new truck();
t.brand = "TATA";
t.year = 1992;
t.loadcapacity = 10000;
System.out.println("the truck brand is:"+t.brand);
System.out.println("the launch year is:"+t.year);
System.out.println("the truck load capacity is:"+t.loadcapacity);
t.startengine();
t.haul();
}
}
Brother please put video on data structure and Algorithm using java
Please brother.
Nenaiche pothutighe game changer❤
Ternary operator la two integer number which number greater than
Class hello {
Public static void main(string args[])
{
Boolean number= true;
Int a=24;
Int b=35;
String result=number?"number a greater than"+a:"number b greater than"+b;
System.out.print(result);
}
}
Output:
Number a greater than 23
3:37:20 here instead of putting - 1 in size you can just erase that = right? I mean like this- for(int i=0;i
Thank you so much Anna🤝. JAVA learn pannanum nu desire erundhadhu. Naa oru Computer science student dha. Java coding romba kashtama erukkuum nu learn pannama erundhuta.
But unga videos paakum bodhu
Learn pannanum nu interest vandhadhu.
Self learning dha pannitu erukka na
Ennum technologies oriented aa nariyaa videos poduvinga nu hope la erukkaa
May God bless you anna🤍
Thanks a lot!!
Bro Java learn panni mudichiteengalaa...
Romba nandri nanba👌.It really helps alot nanba.
Thank you!
Bro, React js full course tutorial video - from Scratch to advanced - Post panunga. Already job la irukravangalukum use ah irukum
bro eannakku age 15 than naan unga videos thoadanthu paarpan.Naan java ippo kathukurathu moolama future la useful irukka 😊
Yess irukkuu
public class Greens{
public static void main (String[ ]args) {
int num = 19;
if(num%2 == 0){
System.out.println("Even");
}
else
{
System.out.println("Odd");
}
}
}
public class Greens{
public static void main(String[]args) {
String color = new String("green");
if(color.equals("red"))
{
System.out.println("Stop");
}
else if(color.equals("yellow"))
{
System.out.println("Get ready");
}
else if(color.equals("green"))
{
System.out.println("GO");
}
}
}
Brother unga voice super 😊
Thanks, happy you enjoyed it!
Brother na B.A.Eco pandre python pannalama brother
The only tutorial that I watched till the end❤
Glad to hear
class maddy{
public static void main(String[] args){
for(int i=10;i>=1;i=i-1){
System.out.println(i);
}
}
}
2:19:16
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter the color (red, yellow, green):");
String color = scan.nextLine();
// Check the color
if (color.equalsIgnoreCase("red")) {
System.out.println("Stop");
} else if (color.equalsIgnoreCase("yellow")) {
System.out.println("Get ready");
} else if (color.equalsIgnoreCase("green")) {
System.out.println("Go");
} else {
System.out.println("Invalid color entered");
}
}
}
Thank you so much bro😊.It's really helpful.I learned a lot of things in this video. Keep rocking bro🔥💯
Glad to hear that
@@ErrorMakesClevertime lapse poda na
Bro ongaluku comment panni Kai valikuthu bro 😊
DSA with python video podunga
React JS video podunga bro
Rombe naala wat pannitu irukan bro ❤
Odd even done 👍
Datatypes 48:15 1:36:24
1:13:22 try panni yachu bro ❤
One more thing u r explaining is soooper
thank you!
@@ErrorMakesClever say any online job plz by using ms excel
Bro SQL playlist complete panunga bro please 😢
Logic first la padi gai bro
3:30:00
import java.io.*;
class aq2
{
public static void main(String args[])
{
int aq [] = {10,20,30,40,50,60,70,80,90,100};
for(int i=0;i
Romba nandri bro ❤❤❤❤❤😊😊😊😊
welcome!
I have a request that for sql u hav only upload few topics. Please kindly upload other topics like joins, subqueries, windows functions, operators as well. & thank you so so much for all ur efforts bro!
3:05:18
import java.util.Scanner;
import java.lang.System;
class ter{
public static void main(String args[])
{
Scanner scan = new Scanner(System.in);
//int a = scan.nextInt();
//nt b = scan.nextInt();
int i ;
int count=0;
for(i=1;i
import java.util.Scanner;
public class TrafficLight {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("What is the color of the traffic light? ");
String color = scanner.nextLine();
switch (color) {
case "red":
System.out.println("Stop.");
break;
case "yellow":
System.out.println("Get Ready.");
break;
case "green":
System.out.println("Go.");
break;
default:
System.out.println("Invalid color.");
}
scanner.close();
}
}
TERNARY OPERATOR
1)
import java.util.Scanner;
class test{
public static void main(String args[])
{
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
String greater = (a > b)? "a":"b";
{
System.out.println("the greater number is:" + greater);
}
}
}
output:
15
10
the greater number is:a
3:05:56 class Main{
public static void main(String args[]){
for(int i=1;i
thank you bro . i am waited for this
Welcome 😊
interface readable {
void readable();
}
interface writeable{
void writeable();
}
interface storable{
void storable();
}
class c implements writeable,readable,storable{
@Override
public void readable(){
System.out.println("read");
}
@Override
public void writeable(){
System.out.println("write");
}
@Override
public void storable(){
System.out.println("storable");
}
}
//interface model
public class main1 {
public static void main(String[] args) {
c c1=new c();
c1.readable();
c1.writeable();
c1.storable();
//inter face model
}
}
7:24:43
1hrs:4min:44sec I watch java program very interesting 🌀
which compiler you r using
2:16:23 try panniyachu ❤
Thank you so much ❤✨
Welcome
Bro spring boot tutorial video podunga bro.. Usefull ah irukum
Thalaiva vera level❤
Thank you!
7:24:44
completed Task
public class apple{
int apple_price = 20;
int apple_count = 5;
void total_money()
{
System.out.println(apple_price*apple_count);
}
public static void main(String args[])
{
apple obj1 = new apple();
obj1.total_money();
}
}
3:31:40
import java.util.Scanner;
class aaron {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
System.out.println("ENTER A NUM: ");
int num = scan.nextInt();
for (int i = 1; i
Bro React js video podunga...usefull ah irukum
public class Greens{
public static void main(String[]args) {
int i = 1;
int evencount = 0;
for(i=1;i
Super useful & advanced content covered from scratch !!! 😃
Thank you
Thanks bro keep it up ❤
Welcome 😊
Tnx for that bro its realy usefull for us ❤
Thank you
First year students ku use aagum including me😅
Where do you guys get this drive man, Does this World never make you tired... I am fully exhausted and overwhelmed... Good luck all