Reddy Prasad Kurapati Venkata

Greenhorn
+ Follow
since Jan 16, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Reddy Prasad Kurapati Venkata

Hi I need to develop a chat application that should be developed as multiusers at client side has to communicate with users at admin side. Will any one suggest me how to start with application?
Hi I need to develop a chat application that should be developed as multiusers at client side has to communicate with users at admin side. Will any one suggest me how to start with application?
16 years ago
JSF
Will any one compile that code and tell me where I went wrong
17 years ago
<code>class Multiplication
{
public static void main(String[] args)
{
final int COLMAX =10;
final int ROWMAX = 12;
int row;
int column;
int y;
do{
column = 1;
do {
y = row * column;
System.out.println(y);
column+=1;
}
while(column <= COLMAX);
System.out.println("\n");
row = row +1;
}
while(row <= ROWMAX)
}
}
</code>
17 years ago
Double is a class.
double is a key word used to store integer or floating point number.
17 years ago
Will any one write a program to display a multiplication table using control loops ?
17 years ago
Hi Every One,

Will any one write a program that displays a multiplication table.
17 years ago