I have a quastion a bout array whic is>>>
1-write aprogram to diplay a multiplication table for 1to 10 by entering the start number and the end number.
EXAMPLE:
ENTER START NUMBER:1
ENTER END NUMBER:3
the result will be
1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 12 14 16 18 20
3 6 9 12 15 18 21 24 27 30
i have a doubt,suppose you withdraw amount from bank,the bank break down the amount in to denomination in such a way that you receive the minimum no of notes assume that there are notes for 1000,500,100,50,20,10,5,2,1
write code to compute the number of notes of each denomination that you received.
pls inform me the code
i have a requirement like i need to mapthe columns of excel sheet to data base table when the excel sheet columns are not in order. generally we do the hard coding like the columns will be fixed ( struts using net beans)
Hi..
I have read this session about the Array declaration,initialization etc.This is very much informative for me.I have one doubt about the declaration that....
int[] arrayname;
and
int arrayname []; both code are working in my computer,can you explain me what is the differece in between these codes.
public class Excercise1{
public static int x = 7;
public int y=3;
}
Question: what are the class variables? what are the instance variables?
2.Determine
the error in the program segmet below.
public class Exercise2{
public static void main(String [] args){
Rectangle myRect;
myRect.width = 40;
my Rect.height = 50;
system.out.println("Rectangle's area is " + myRect.area(();
}
}
quastionhassan June 12, 2011 at 9:13 PM
I have a quastion a bout array whic is>>> 1-write aprogram to diplay a multiplication table for 1to 10 by entering the start number and the end number. EXAMPLE: ENTER START NUMBER:1 ENTER END NUMBER:3 the result will be 1 2 3 4 5 6 7 8 9 10 2 4 6 8 10 12 14 16 18 20 3 6 9 12 15 18 21 24 27 30
how to use Count compenent();hang samoil June 26, 2011 at 9:51 PM
I want get answer from you about how to create countcompenet() in Java language?
java codeDEEPA ES March 3, 2013 at 10:57 PM
i have a doubt,suppose you withdraw amount from bank,the bank break down the amount in to denomination in such a way that you receive the minimum no of notes assume that there are notes for 1000,500,100,50,20,10,5,2,1 write code to compute the number of notes of each denomination that you received. pls inform me the code
CommentSuper_Vince September 26, 2011 at 9:29 AM
GOOD!
fuckyoudicks October 17, 2011 at 11:21 PM
I hate you all
hiHawbash November 18, 2011 at 10:59 PM
good
excel sheet related codingpreeti December 27, 2011 at 12:58 PM
i have a requirement like i need to mapthe columns of excel sheet to data base table when the excel sheet columns are not in order. generally we do the hard coding like the columns will be fixed ( struts using net beans)
commentstomy March 1, 2012 at 10:44 AM
Hi.. I have read this session about the Array declaration,initialization etc.This is very much informative for me.I have one doubt about the declaration that.... int[] arrayname; and int arrayname []; both code are working in my computer,can you explain me what is the differece in between these codes.
kabelo April 19, 2012 at 11:15 PM
how work with array on the Back End Class
array methodvelmurugan May 11, 2012 at 7:50 PM
how many array method mostly used the program and please list out that all...?
will try the named codesian July 10, 2012 at 8:42 PM
awsome, i will get home and study it better,
pls helpChacha November 25, 2012 at 5:46 PM
public class Excercise1{ public static int x = 7; public int y=3; } Question: what are the class variables? what are the instance variables? 2.Determine the error in the program segmet below. public class Exercise2{ public static void main(String [] args){ Rectangle myRect; myRect.width = 40; my Rect.height = 50; system.out.println("Rectangle's area is " + myRect.area((); } }
regarding arraysvrkmurali April 15, 2013 at 12:48 PM
String s1=new String[3]; s1[0]="A"; s1[2]="b"; system.out.println(s1.length);//3 but i need occupied arrays size.
Post your Comment