8:40 class demo{ public static void main(String[] args){ //code def: using array to get ten variables to print using for loop int[] numbers = new int[10]; for(int i=0;i
@armaanr29342 ай бұрын
Super bro and I also do like this in starting Put the line like this int[] numbers =new int[]{1,2,3,4,5,6,7,8,9,10};
@Peace_pain20 күн бұрын
numbers [1] =20; ithellam for loop kulla potrukinga, for loop use pannanum nu avasiyam illa apdiye podalam Aprm code direct aa ve podalam int[] num={0,1,2,3,4,5,6,7,8,9};
@sarankavin20105 ай бұрын
Table program Program: import java.util.Scanner; class array{ public static void main(String args[]) { Scanner scan=new Scanner(System.in); System.out.println("Enter table number"); int num=scan.nextInt(); for (int i=1;i
@thangaprabu57825 ай бұрын
public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("number of arrays: "); int size = scan.nextInt(); int[] arr = new int[size]; for (int i = 0; i
@madhupriyag46274 ай бұрын
Thanks
@logupavithranlogupavithran27432 ай бұрын
bro I have a doubt, what if the size of the array is 7?
@jpjeshma2 ай бұрын
@@logupavithranlogupavithran2743 user Ena input kudukurangalo atha bro size
@madan4782 ай бұрын
@@logupavithranlogupavithran2743Index 3 is middle value
@PraveenKr-n3r14 күн бұрын
in last line, (arr[(size+1)/2]); is correct
@vigneshwaransuriyamoorthy9046 ай бұрын
public class loop{ public static void main(String[] args) { int[] mark = {10,15,12,45,5,78,45,89,63,10}; for (int i=0;i
@LokEsh-fj3cm6 ай бұрын
Super bro
@ramyachitra88148 ай бұрын
public class demo { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for (int i = 0; i < 10; i++) { System.out.println(numbers[i]); } } }
@harikeshchandraganesh19356 ай бұрын
get input ma using scanner
@KarthigaVel-h2t4 ай бұрын
In question doesn't ask get input
@amudhak64922 ай бұрын
It is wrong, already you gave a value to the array then what is the purpose of loop and again re assigning the value to it?
@kishorekumar83265 ай бұрын
bro 15:56 la (i
@tech_information20044 ай бұрын
Ama broo
@haasinis-kj9kl7 ай бұрын
import java.util.Scanner; class sample { public static void main(String args[]) { Scanner scan = new Scanner(System.in); // STEP 1: Get input for the size of an array System.out.print("Enter the size of the array: "); int size = scan.nextInt(); // STEP 2: Create an array int[] array = new int[size]; // STEP 3: Get input for each element in the array using for loop for(int i = 0; i < size; i++) { System.out.print("Enter number " + (i + 1) + " : "); array[i] = scan.nextInt(); } // STEP 4: Printing the whole array for reference using for loop System.out.print(" "); for(int i = 0; i < size; i++) { System.out.println("Array of " + i + " : " + array[i]); } System.out.print(" "); // STEP 5: To find the middle element in the array int k = array.length; int mid = k / 2; // STEP 6: Print the middle element for both odd and even cases if(k % 2 != 0) { System.out.println("Middle element: " + array[mid]); } else { System.out.print("Middle elements: " + array[mid - 1]); System.out.print(" and " + array[mid]); } } }
@krishharish5067 ай бұрын
super 💯
@coolfool16 ай бұрын
Mass🔥
@boobathibossboobathibss42433 ай бұрын
😮
@mano1950Ай бұрын
Thanks bro problem ahh paadhile vittadhuku 😂midhiya Naa yosichi yosichi thala Vali vandhuduchi😂but finally I got the output 😅 it's very fun package practice; import java.util.Scanner; public class aaray { public static void main(String args[]) { Scanner abc=new Scanner(System.in); int size=abc.nextInt(); int[] number=new int[size]; int i=0; for(i=0;i
@ErrorMakesCleverАй бұрын
Super
@varshafeena2469Ай бұрын
Can you please share the ans
@gouthambe.y11496 ай бұрын
Class 5table{ public static void main(String[] args) { for (int i=1;i
@Jeevanplayboy5 ай бұрын
i*5 nu pottale varume bro.. Edhuku i+i*4 nu potrukinga
@Rakesh-j1v9b7 ай бұрын
import java .util.Scanner; public class Main { public static void main(String[] args) { Scanner get=new Scanner(System.in); System.out.print("Enter the number:"); int a=get.nextInt(); for(int i=1;i
@ranjt-f2f6 ай бұрын
🤜🏻🤛🏻
@umasankari52266 ай бұрын
Bro print pandra edathula fault eruku bro i podura edathula a podanum bro
@Rakesh-j1v9b6 ай бұрын
@@umasankari5226 bro ithu correct than bro "a" pota than bro 2x1=2 ,intha mathiri print hagum bro
@Rakesh-j1v9b6 ай бұрын
"a" value is 2 bro
@2aks1174 ай бұрын
For(i=0;i
@KaviKavi-p7o5 күн бұрын
System.out.print("Enter table number:"); int tab=scan.nextInt(); for(int i=1;i
@madhanarjun47674 ай бұрын
Question No : 2 class hello{ public static void main(String args[]) { int[] array = {1,2,3,4,5,6,7,8,9,10}; for(int element:array) { System.out.println(element); } } }
@KarthikA-h2y6 ай бұрын
package challenge4; // Print 10 number from an array using forloop public class q2 { public static void main(String[] args) { int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; for (int i = 0; i
@Muhammed_Nowfal8 ай бұрын
class Demo{ public static void main(String[] args) { int[] a = {1,2,3,4,5,6,7,8,9,10}; for(int x : a){ System.out.println(x); } } }
@harikeshchandraganesh19356 ай бұрын
get input bro
@sathishkraja21306 ай бұрын
@@harikeshchandraganesh1935public class ArrayPrintnum { public static void main(String[] args) { Scanner scan=new Scanner(System.in); int[] num-new int[10]; for (int i=0;i
@sathishkraja21306 ай бұрын
Please tell
@Vigneshs-i2n16 күн бұрын
public class arryaten { public static void main(String [] args) { Scanner Scan = new Scanner(System.in); int [] numbers = new int[10]; for(int i=0;i
@Siva32_74 ай бұрын
import java.util.Scanner; class MiddleElement { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); // Getting the size of the array System.out.print("Enter the size of the array: "); int size = scanner.nextInt(); // Declaring the array int[] array = new int[size]; // Getting the elements of the array System.out.println("Enter the elements of the array:"); for (int i = 0; i < size; i++) { array[i] = scanner.nextInt(); } // Finding and printing the middle element int middleIndex = size / 2; if (size % 2 == 0) { System.out.println("Middle elements are: " + array[middleIndex - 1] + " and " + array[middleIndex]); } else { System.out.println("Middle element is: " + array[middleIndex]); } } }
@BRUH-fp1qv3 ай бұрын
chat gpt
@kishorekumar83265 ай бұрын
16:26 import java.util.Scanner; class demo{ public static void main(String args[]){ Scanner s = new Scanner(System.in); System.err.println("Enter yout Table Number"); int a = s.nextInt(); int[] arr = new int [a]; for(int i=0;i
@prachu31103 ай бұрын
import java.util.Scanner; class test5{ public static void main(String args[]) { Scanner scan=new Scanner(System.in); int table=scan.nextInt(); for(int i=1;i
@AjithKumar-ff1bq8 ай бұрын
Bro find and print middle element question ku explanation video la varala
@SRSGAMINGYT-sp4 ай бұрын
instead of -1 we can remove = from for loop.
@vigneshwaransuriyamoorthy9046 ай бұрын
import java.util.Scanner; public class siz{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int mark = scan.nextInt(); int[] ma = new int[mark]; for (int i=0;i
@abilash80406 ай бұрын
public class forlooparrayprint10num { public static void main(String[] args) { int [] arr={1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@ris6074 ай бұрын
For loop la i++ potta loop aagum pota...so i+1 enter panunga
@prakashs49712 күн бұрын
Q2 . Print 10 numbers from an array using for loop. Ans: int[] num = new int[10]; num[0] = 11; num[1] = 22; num[2] = 34; num[3] = 45; num[4] = 75; num[5] = 86; num[6] = 79; num[7] = 80; num[8] = 39; num[9] = 90; for(int i=0; i
@VigneshVicky-xj9it8 ай бұрын
Your videos are the most useful for my future thanks for sharing another informative video
@muralisiva8066Ай бұрын
Scanner scan = new Scanner(System.in); System.out.print("multiplication factor: "); int factor = scan.nextInt(); for (int i = 1; i
@VAISHNAVIREEE-202128 күн бұрын
public class hello{ public static void main(String args[]){ int[] arr = new int[] {1,2,3,4,4,4,4,8,9,10}; for(int i =0;i
@kabilandina113 ай бұрын
public class Main { public static void main(String[] args) { int [] arry={1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@cm___aths6 ай бұрын
public static void main (String args[]){ Scanner tab= new Scanner(System.in); int le=tab.nextInt(); System.out.println("table for "+le); for(int i=1;i
@avinashr61935 ай бұрын
Bro neeyanga sollitharathulam puriyuthu bro pannuran coding but oru problem statement kudutha enaku takunu poda varamatikuthu bro
@KaviKavi-p7o5 күн бұрын
System.out.print("array size:"); int size=scan.nextInt(); int[] elements=new int[size]; for(int i=0;i
@lakchayalaks71456 ай бұрын
import java.util.Scanner; class main { public static void main(String args[]) { Scanner scan = new Scanner(System.in); int size = scan.nextInt(); int[] marks= new int[size]; for(int i= 0;i
@leo__crush4 ай бұрын
program for any tables import java.util.Scanner; class num{ public static void main (String args[]){ Scanner scan = new Scanner(System.in); System.out.println("enter the number for which you want the table:"); int tablenumber= scan.nextInt(); for(int i=1; i
@nobeautywithouthealth9148 ай бұрын
import java.util.Scanner; public class Practice { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Enter the table's number you want: "); int num = scan.nextInt(); for(int i=1; i
@VashanthSPBEC8 ай бұрын
wrong
@VashanthSPBEC8 ай бұрын
import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner Sc = new Scanner(System.in); int num = Sc.nextInt(); for(int i=1;i
@nobeautywithouthealth9148 ай бұрын
Thanks I forgot to change the x2
@hariharan.a28025 ай бұрын
public static void main(String args[]) { int[] mark=new int[10]; for (int i=1; i
@zero4one-A135 ай бұрын
bro for loop la int i=0 nu kudutha thane bro 0 to 9 varaikum 10 numbers varum 1 to 9 kuduthal 9 number thane varum change pannikonga
@hariharan.j9566 ай бұрын
class Hello { public static void main(String[] args) { int[] marks= new int[10]; for(int i =0 ; i
@krishharish5067 ай бұрын
class code{ public static void main(String args[]) { // int[] variable=new int[9]; int[] variable={1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@kuralneriselvan29146 ай бұрын
class java { public static void main(String[] args) { int[] num=new int[9]; for (int i=1;i
@anupriya-it55346 ай бұрын
2nd problem: int[] num = {1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@nitheshnks98786 ай бұрын
👍
@Forfellas6 ай бұрын
Import java. util. Scanner ; Class array { P. S. V. M. (Str.in); { Scanner scan = new Scanner (System.in) ; Int table = scan. nextInt() ; Int[] num= new int [10]; For(int I=1;I
@balajicheenu16044 ай бұрын
import java.util.Scanner; public class sample { public static void main(String args[]){ Scanner scan = new Scanner(System.in); System.out.println("enter the number for the table multiplication"); int j= scan.nextInt(); for(int i=1; i
@sameeribrahim80158 ай бұрын
Bro middle element kandu pidkira part kanom video la check pannunga
@gokulraj7038 ай бұрын
S
@Rasith447 ай бұрын
Broo
@-CA-SuthiV5 ай бұрын
import java.util.Scanner; class ex1{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("How much inputs you need to enter?"); int total = scan.nextInt(); int[] arr = new int[total]; System.out.println("Enter the inputs :"); for(int i = 0;i
@Jeevanplayboy5 ай бұрын
@@-CA-SuthiV knjm explain pannu bro plz😢😢😢😢
@ash-u2o7k4 ай бұрын
@@Jeevanplayboy bro ippo antha array sizea check panrom suppose athu even a iruntha athuku 2 middle elements irukumla atha print pannanum and odda iruntha atha "total size " / 2 panna namaku mid element Location kedaikum so namma (arr[total size/ 2]) podum bothu namalala mid element a print panna mudiyum..
@santosh_saravanan8 ай бұрын
import java.util.Scanner; public class Sample { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Which multiplication table you want :"); int table=scan.nextInt(); for(int i=0;i
@anandkumar-hz9yw8 ай бұрын
Wrong
@kaleeswarinagalingam66496 ай бұрын
Question 2 code: import java.util.Scanner; import java.lang.System; public class arraycodechallenge { public static void main(String[] args) { int[] x=new int[10]; int i; for( i=0;i
@dimpleking00777 ай бұрын
question 2 import java.util.Scanner; public class chall1 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[] arr = new int[5]; System.out.println("Please enter 5 integers:"); for (int i = 0; i < 5; i++) { arr[i] = scan.nextInt(); } System.out.println("You entered:"); for (int num : arr) { System.out.println(num); } } }
@dimpleking00777 ай бұрын
we can change a arrage value and loop value
@sathyap4654 күн бұрын
package Java; import java.util.Scanner; public class Table { public static void main(String[] args) { Scanner obj=new Scanner(System.in); System.out.println("enter a table number:"); int num = obj.nextInt(); //System.out.println("enter value b:"); //int b = obj.nextInt(); for(int i=1;i
@shankarraj36064 ай бұрын
Tables Challenge Program :import java.util.*; class Taables{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int n=scan.nextInt(); if(n==5){ n = 10; } for(int i=1;i
@prabhuudayakumar56605 ай бұрын
Q4 full answer package Practice_Jav; import java.util.Scanner; public class lesson3q4 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan =new Scanner(System.in); int a = scan.nextInt(); int [] size = new int[a]; for(int i = 0 ; i
@harikeshchandraganesh19356 ай бұрын
import java.util.Scanner; class test3{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int num[] = new int[10]; for(int i=0;i
@info-yv3su5 ай бұрын
class ben{ public static void main(String args[]){ int [] n = {1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@DivyaDivya-wh1vbАй бұрын
you got the correct ANSWER it is wrong
@info-yv3suАй бұрын
@@DivyaDivya-wh1vb how bro
@Umer-Salman4 ай бұрын
Middle element concept video is not exist kindly check that bro at 16:26
@Gojohatake-rz5ko4 ай бұрын
int result = arr[size/2]; print(result); ithu middle element print pannum for odd number size
@jayaprakashs4412Ай бұрын
class array_10 { public static void main(String args[]) { int[] nums={1,2,3,4,5,6,7,8,9,10}; for (int i=0;i
@hamshidhan62792 ай бұрын
Hi Anna, Mid Element find pannurathuku Enna Pannanum import java.lang.System; import java.util.Scanner; class hello{ public static void main(String args[]) { System.out.println("What is the Size of your Array?"); Scanner Scan = new Scanner(System.in); int Size = Scan.nextInt(); { System.out.println("What are the Elements in your Array"); } { int[] Element = new int[Size]; { for(int i=0; i
@sagar-724272 ай бұрын
Super
@sagar-724272 ай бұрын
But small mistake so once again check
@Gowtham-p5y9 күн бұрын
Midindex=element[size/2];
@dheepak3677 күн бұрын
TABLE FOR N import java.util.Scanner; class hello{ public static void main (String args[]) { int N; int [] number = new int[10]; Scanner scan = new Scanner(System.in); N=scan.nextInt(); for (int i=0;i
@Indhumathi-p1q4 ай бұрын
Scanner scan = new Scanner(System.in); System.out.println("Enter the Values"); int n = scan.nextInt(); int[] ar = new int[n]; for(int i=0; i
@Jenifer-b4l6 ай бұрын
int[] num=new int[10]; for(int i=0;i
@-CA-SuthiV5 ай бұрын
Middle Element solution - import java.util.Scanner; class ex1{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("How much inputs you need to enter?"); int total = scan.nextInt(); int[] arr = new int[total]; System.out.println("Enter the inputs :"); for(int i = 0;i
@computrons20234 ай бұрын
import java.util.Scanner; public class challenge3{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int arr[] = new int[10]; for(int i=0;i
@gopi61663 ай бұрын
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan= new Scanner(System.in); int[] number= new int[10]; for(int i=0;i
@SundarN-v3u4 ай бұрын
import java.util.Scanner; public class MultiplicationTable { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter a number: "); int num = scanner.nextInt(); System.out.println("Multiplication table of " + num + ":"); for (int i = 1; i
@rohanvcse63766 ай бұрын
import java.util.Scanner; class demo{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); for(int i=1;i
@manikandan-sw3gtАй бұрын
public static void main(String args[]){ int[] a ={1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@NiranjanJ-l5u28 күн бұрын
New
@VidyasriDhanasekaran-kj4yd5 ай бұрын
Romba ValaVala Nu sollitharatha brooo
@hamshidhan62792 ай бұрын
import java.lang.System; import java.util.Scanner; class hello{ public static void main(String args[]) { Scanner Scan = new Scanner(System.in); int[] Score = new int[10]; { for(int i=0; i
@varun96985 ай бұрын
question 4 : Middle Element import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner art = new Scanner(System.in); int n = art.nextInt(); int[] num = new int[n]; for(int i=0 ; i
@tn_wolf_254 ай бұрын
Q2 int[]goat={1,2,3,4,5,6,7,8,9,0}; for(int i=0;i
@leo__crush4 ай бұрын
import java.util.Scanner; class num{ public static void main (String args[]){ Scanner scan = new Scanner(System.in); int[] score = new int[10]; for(int i=0; i
@sarajwanth48175 ай бұрын
import java.util.Scanner; class hello { public static void main(String args[]) { int i; Scanner scan = new Scanner(System.in); System.out.print("Enter the size of an array:"); int size = scan.nextInt(); int[] arr = new int[size]; for (i=0; i
@varshuvarshini76723 ай бұрын
import java.util.Scanner; public class ten{ public static void main(String args[]){ Scanner nisha = new Scanner(System.in); int[] numbers = new int[10]; for(int i = 0; i
@thanusanththanus39549 күн бұрын
import java.util.Scanner; class t{ public static void main(String[]args){ Scanner ex=new Scanner(System.in); int[] marks=new int[10]; for(int i=0;i
@prabhuudayakumar56603 ай бұрын
package working; import java.util.Scanner; public class Coding3_part2_Q4 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); int input = scan.nextInt(); int [] array = new int[input]; for (int i=0; i
@hariharan.a28025 ай бұрын
import java.util.Scanner; class array{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); int size =scan.nextInt(); int[] mark =new int[size]; for(int i=0;i
@mahiths24196 ай бұрын
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[] num=new int[10]; { for(int i=0;i
@nvsbflims46248 ай бұрын
class one { public static void main(String[] args) { int[] num = {1,2,3,4,5,6,7,8,9,10}; for (int j = 0; j < 10; j++) { System.out.print(num[j] + " "); } } }
@deadpool4912-m5f5 ай бұрын
import java.util.Scanner; public class Megna { public static void main(String[] args) { int[] number = new int[12]; Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); for (int i=1; i
@shivak94898 ай бұрын
How to find middle element in array?
@PreethiSiva-gb3qs6 ай бұрын
Bro...how to find middle element
@-CA-SuthiV5 ай бұрын
@PreethiSiva-gb3qs import java.util.Scanner; class ex1{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("How much inputs you need to enter?"); int total = scan.nextInt(); int[] arr = new int[total]; System.out.println("Enter the inputs :"); for(int i = 0;i
@sasikanth32774 ай бұрын
Mid value didn't work
@MisnathSamha4 ай бұрын
C# video podunga anna please
@attu51169 күн бұрын
Brow middle element epdi brow display panrathu
@Siva32_74 ай бұрын
import java. util. Scanner; class HelloWorld { public static void main(String[] args) { Scanner scan= new Scanner(System.in); int a= scan. nextInt(); for(int i=1; i
@hariharan.g47913 ай бұрын
🤝
@KarthikA-h2y6 ай бұрын
package challenge4; import java.util.Scanner; // Get input for size of an array // Get input for each element in an array // Find the middle element in an array public class q4 { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { // Get the size of an array System.out.print("Enter the size of an array:"); int size = scan.nextInt(); int[] arr = new int[size]; // Get the input for each element in an array for (int i = 0; i
@madhanarjun47674 ай бұрын
//Table Problem Using User input// import java.util.Scanner; class hello{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.print("Enter Table No:"); int table = scan.nextInt(); for(int i=1;i
@impajith7323 ай бұрын
import java.util.Scanner; class ok { public static void main(String args[]) { Scanner ajith=new Scanner(System.in); int[] mark=new int[10]; int count=0; for(int i=0;i
@SATHISHKUMARJ-r2x5 ай бұрын
import java.lang.System; import java.util.Scanner; class hello { public static void main(String args[]) { Scanner scan = new Scanner(System.in); int[] score = new int[10]; for(int i=0;i
@nvsbflims46248 ай бұрын
Bro you didn't complete last question last part but I have completed it see this bro please class one { public static void main(String[] args) { try (Scanner inputScanner = new Scanner(System.in)) { System.out.println("Enter size of the array..."); int a = inputScanner.nextInt(); int[] num = new int[a]; for (int i = 0; i < a; i++) { int b = inputScanner.nextInt(); num[i] = b; } if(a % 2 == 0){ int middle2 = a / 2 ; int middle1 = middle2 - 1; System.out.print("Middle Element : " + num[middle1] + ", " + num[middle2]); } else{ int middle1 = a / 2; System.out.print("Middle Element : " + num[middle1]); } } } }
@logadharshini44537 ай бұрын
Idhuku output bro.
@JANANIVAECstudent4 ай бұрын
anna table coding la input get pani code poda sonegala adhu romba confusion ah iruku can you send me a code in comment?
@Alhaque-b7s4 ай бұрын
import java.util.Scanner; class ForLoop { public static void main(String[] args) { int[] numbers =new int[10]; Scanner s = new Scanner(System.in); for(int i =0;i
@ss-ff1qj2 ай бұрын
bro 16:26 kaparm video run avala
@pratheeppr391725 күн бұрын
import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int ab= scan.nextInt(); int[] array = new int[ab]; for(int i=0;i
@UDHAYSRIRAMGMECH5 ай бұрын
Link not working
@user-name-is-Arasu6 ай бұрын
Broo Full video upload panunga pls🙏🏻
@VijayaKumar-b6s18 күн бұрын
int[] num=new int[10]; for (int i = 0; i
@Shamyuktha-175 ай бұрын
Bro array suthama puriyala confuse aagudhu again video potu soli kudunga
@Kumaresh.S-t1b4 ай бұрын
Yes bro..😢
@012dhakshanar4Ай бұрын
import java.util.*; class Main{ public static void main(String args[]){ Scanner j=new Scanner(System.in); int[] no=new int[10]; for(int i=0;i
@shreeaswin38827 ай бұрын
Middle number solve pannala bro atleast caption poduinga bro
@shreeaswin38827 ай бұрын
15:10
@sivaram76902 ай бұрын
user input table import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner scan=new Scanner(System.in); System.out.println("Enter the number of table which you want="); int table=scan.nextInt(); for(int i=1;i
@sathishkraja21306 ай бұрын
Bro middle element find and print video ila upload panuga
@-CA-SuthiV5 ай бұрын
import java.util.Scanner; class ex1{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("How much inputs you need to enter?"); int total = scan.nextInt(); int[] arr = new int[total]; System.out.println("Enter the inputs :"); for(int i = 0;i
@sathishkraja21305 ай бұрын
@@-CA-SuthiV bro antha channel pathu kathukiga
@-CA-SuthiV5 ай бұрын
@@sathishkraja2130 ithe channel tha bro..
@dhanushramnath14904 ай бұрын
Bro hhow to find the middle element in the array
@pratheeppr391725 күн бұрын
import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int ab= scan.nextInt(); int[] array = new int[ab]; for(int i=0;i
@vigneshsubramaniyam12703 ай бұрын
Question: to print tables for a number import java.util.Scanner; class qn18{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("Enter the number for which you want the table"); int num = scan.nextInt(); System.out.println("Enter the multiples upto which the table of the number needs to be printed"); int upto = scan.nextInt(); for(int i=1;i
@SundarN-v3u4 ай бұрын
video last la how to find mid numer solala bro nega
@pratheeppr391725 күн бұрын
import java.util.Scanner; class hello{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int ab= scan.nextInt(); int[] array = new int[ab]; for(int i=0;i