how to print the below in java?
* *
* *
*
* *
* *
Answers were Sorted based on User's Feedback
Answer / ganesh slv
/**
* Printing Stars - 24.03.10
* @author Ganesh
*/
public class Star {
/**
* Please Send me Your Comment - slvganesh.java@gmail.com
*/
public static void main (String arg[]) {
int n = 6;
for (int i=0, j=n; i<=n; i++,j--) {
for (int k=0; k<=n; k++) {
if (i==k || j==k)
System.out.print ("*");
else
System.out.print (" ");
}
System.out.println ();
}
} // Main
} // Class
Is This Answer Correct ? | 17 Yes | 1 No |
Answer / kickme
public static void main (String arg[]) {
System.out.println(" * * ");
System.out.println(" * * ");
System.out.println(" * ");
System.out.println(" * * ");
System.out.println(" * * ");
}
Is This Answer Correct ? | 3 Yes | 1 No |
what is daemon thread and which method is used to create the daemon thread? : Java thread
Why do inner class cannot have static declaration except static nested class?
Can Exception handling we can handle multiple catch blocks?
What is map in java?
What is difference between static and abstract class?
What is finally and finalize in java?
What is a treemap in java?
What are the principle concepts of oops?
What is string :: npos?
What is the static variable?
How many types of methods are there in java?
What is balanced tree in java?