Saturday, December 20, 2014
By Sharing News on 6:41 AM
This Code will show you Decreasing Pattern (But It's is a number not * ).
Here Code :
public static void main(String[] args) {
for(int i=7 ; i>=1 ;i--)
{
for(int j=1 ; j<=i; j++)
System.out.print(j + " ");
System.out.println("");
}
}
}
Posted in Java Language | No comments
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Write a program that will ask the user to input n positive numbers. The program will terminate if one of those number is not posi...
-
This Java code is to sum two number , not for sum only and user can use it for Calculator of Two Number ;) . Because it have all ...
-
Write a program that asks the user to type 10 integers and writes the sum of these integers. Using for loop. Total sum of te...
-
Write a program that will ask the user to input three integer values from the keyboard. Then it will print the smallest and...
-
Justin Bieber has been left behind by the Instagram Rapture. The "Baby" crooner lost a whopping 3.5 million followers after Ins...
-
Write Java program to print the table of characters that are equivalent to the Ascii codes from 1 to 255. Code Her...
-
About this , it's will find a Maximize of Three Number ;) . The User Need to Input Three Integer and then its will show the Maxi...
-
Write a program that will display the calculator menu. The program will prompt the user to choose the operation choice ...
-
This Code will show you Decreasing Pattern (But It's is a number not * ). Here Code : public static void main(String[] args...
About Me
Powered by Blogger.
0 comments:
Post a Comment