how to print the below in java?thanks in advance....
*
* *
* *
* *
*
Answers were Sorted based on User's Feedback
Answer / keerthi
public class Diamond{
public static void main(String args[]){
int n=10;
int m=n/2;
int p=0;
for(int i=0; i<=n;i++){
if(i>m)
p++;
for(int j=0; j<=n;j++){
if((m-i)==j ||(m+i)==j || (i-j)==m ||(i>m && (n-p)==j))
System.out.print("*");
else
System.out.print(" ");
}
System.out.println("\n");
}//First for loop end
}//Main
}//Class end
output:
*
* *
* *
* *
* *
* *
* *
* *
* *
* *
*
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / venkat
In the above program 4th line from last remove "\n"
ie. shoule be System.out.println("")
below is output:
*
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
*
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / jitendra
for(i=1;i<=3;i++)
{
for(j=3;j>=i;j--)
System.out.printf(" ");
System.out.printf("*");
for(j=1;j<2+i;j++)
System.out.printf(" ");
System.out.printf("*");
System.out.printf("\n");
}
this is to print
*
* *
* *
now apply ur brain to print the rest...
any problem ..then mail me
jitendrasharma13@gmail.com
| Is This Answer Correct ? | 2 Yes | 6 No |
what are the boundaries of jdk and jre?
Is Java a dying language?
What is t in generics in java?
What is the difference between preemptive scheduling and time slicing?
whats the life cycle of jsp
What is meant by 'Class access modifiers'?
How can you eliminate duplicates?
Difference between method overloading and overriding.
Can you explain inner class.
what is anonymous class in java?
what is thread? What are the high-level thread states? : Java thread
What are the advantages and disadvantages of reference counting in garbage collection?