+ 3

Guys please help ! How to make this program?

01 23 45 67

16th Oct 2017, 10:49 AM
SarvarCoder
5 odpowiedzi
+ 19
int x=4,b=0; while(x>0){ int a=2; while(a>0){ System.out.print(b); b++; a--; } System.out.println(""); x--; } //it will work buddy ☺
16th Oct 2017, 12:52 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 3
//reply to question //code by siva public class Program { public static void main(String[] args) { for (int x=0; x<=7;x++) { System.out.print (x); x++; System.out.println(x); } } }
16th Oct 2017, 1:38 PM
Siva Shankar
Siva Shankar - avatar
+ 2
init a var to 1 and add it 22 inside a loop python example a = 1 while a < 100 : print(a) a = a + 22
16th Oct 2017, 11:09 AM
MBZH31
MBZH31 - avatar
+ 2
thanx guys! u r really helped me!
16th Oct 2017, 4:17 PM
SarvarCoder
+ 1
please help
16th Oct 2017, 10:49 AM
SarvarCoder