skip to main
|
skip to sidebar
BlueJ Programs
Wednesday, January 16, 2008
Pattern Inverted Triangle
+++++
++++
+++
++
+
this is the output of this program
class LeftTriangle
{
public static void main()
{
for(int i=0;i<5;i++)
{
for(int j=5;j>i;j--)
{
System.out.print("+");
}
System.out.println();
}
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Labels
2D Array
(2)
Algebra
(1)
Common
(1)
Model Paper
(5)
Number
(1)
Request Section
(1)
String
(3)
Visitors
Blog Archive
▼
2008
(39)
►
February
(1)
▼
January
(38)
Program To Print All the NON Fibonacci Numbers
Quadratic Equation
String based Program
Frequency Of Vowels In the String
Perfect Number
[2D Array] Sum of diagonals
Request a Program Here
HCF and LCM of 2 numbers
Find the Longest Word in the String
Count the number of spaces in a String
Palindrom String
Pattern Alphabetic Diamond
Pattern Inverted Triangle
Pattern RightTriangle
[2D array] TransPose of array
[2D array] Sum of Right Diagonal
[2D array] Sum of left Diagonal
Find the Mean of the Array
Search[Array]
WAP to find the Max and Min element in a Array
Sort an array using Bubble sort technique
Sort an array using selection sort technique
[2D array]Sum of Even and Odd
Substraction Of 2D matrix
Addition Of 2D matrix
Smallest and Largest Digit present in a Number
Frequency Of each Character of a String
Fibonacci Series
Find the number with Highest number of Factors in ...
Rupees To Dollar
PrimePalindrom
Covert Rupees To there Corresponding Notes
PythaGorian Triplets
Find Date
[menudriven]-Area Of all the Shapes
HCF of a Number
Prime Number
Armstrong Number
About Me
Anshul
View my complete profile
No comments:
Post a Comment