Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
3.D
//'main' method must be in a class 'Rextester'. //openjdk version '11.0.5' // Razak-7051 import java.util.*; import java.lang.*; class Rextester { public static void main(String[] args) { System.out.println("Floyd's triangle pattern is "); int i,j,rows=5; int count=1; for(i=1; i<=rows; i++) { for(j=1; j<=i; j++) { if((i+j)%2==1) System.out.print("0"); else System.out.print("1"); } System.out.println(); } System.out.println(); } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Increment
exp 1
Main
output2
swastik
Factorial using recursion in java
or You Over the hill
Remove unbalanced parentheses in a given expression
상속2
classwork
Please log in to post a comment.