Results 1 to 7 of 7
- 11-23-2011, 12:02 PM #1
Member
- Join Date
- Nov 2011
- Posts
- 4
- Rep Power
- 0
- 11-23-2011, 12:03 PM #2
Member
- Join Date
- Nov 2011
- Posts
- 4
- Rep Power
- 0
Re: new to java and needs help on loop
dis is what i got and it is not working
public class loop1
{
public static void main(String args[])
{
int i,j,k,l;
for(i=1;i<=4;i+=1)
{
for(j=2;j<=8;j+=2)
{
for(k=3;k<=12;k+=3)
{
for(l=4;l<=16;l+=4)
{
System.out.println( + i + " "+ j + " " + k +" "+l);
}
System.out.println( );
}
}
}
}
}
- 11-23-2011, 12:45 PM #3
Re: new to java and needs help on loop
Can you explain your problem?
Do you have any questions?
If you are having problems, show your programs output with your question.
- 11-23-2011, 03:56 PM #4
Member
- Join Date
- May 2011
- Posts
- 27
- Rep Power
- 0
Re: new to java and needs help on loop
You Concentrate on logic. it help more.
code it will help you.
for (int i =1; i <5;i++) {
for (int j=1;j<5;j++) {
System.out.print(i*j);
}
System.out.println();
}
- 11-23-2011, 04:02 PM #5
Re: new to java and needs help on loop
What is the code you posted for? Are you trying to help the OP solve his problem? Or are you giving him a solution?
You need to explain what your code does and how to figure out the solution.
Just posting code does not help the OP learn how to solve programming problems.
You don't learn much with copy and paste.
- 11-24-2011, 03:02 AM #6
Member
- Join Date
- Nov 2011
- Posts
- 4
- Rep Power
- 0
Re: new to java and needs help on loop
tnks for ur assist
- 11-24-2011, 03:50 AM #7
Similar Threads
-
Problem with while loop, assigning a variable with a different value every loop? Help
By JavaProg in forum New To JavaReplies: 2Last Post: 11-07-2011, 02:25 AM -
Is it Possible? Array elements Initialized in Loop, can it be viewed outside loop?
By JPH in forum New To JavaReplies: 1Last Post: 10-01-2011, 02:12 AM -
Using while loop in Java?
By popeyito18 in forum New To JavaReplies: 4Last Post: 06-26-2011, 02:15 AM -
for loop in java
By newjava in forum New To JavaReplies: 7Last Post: 12-16-2009, 10:39 AM -
Help with loop in java
By trill in forum New To JavaReplies: 1Last Post: 08-07-2007, 07:36 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks