ExecuteProgram
Home
Java
Selenium Webdriver
Pattern Example in Java :Pattern2
Tweet
Pin It
P
attern
D
esign
F
ormat in
J
ava
Example:
public class patternexp1 {
public static void main(String[] args) {
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
{
System.out.print(i);
}
System.out.println("");
}
}
Output:
1
22
333
4444
55555
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment