Oh ! the loud voices
I hate my parents when they give me advice, Especially when they do it more Than thrice. I get it , I get it I get the point Now I know more than … Read more
Value Added Education
I hate my parents when they give me advice, Especially when they do it more Than thrice. I get it , I get it I get the point Now I know more than … Read more
Summer vacation is around the corner for all school students from CBSE , ICSE and state board. Generally if somebody doesn’t plan that itself is plan which gets executed without you knowing it. So its better to know the plan before and execute it later than its instant execution without aware of planning . … Read more
Q 1. Write a program to print following pattern using BLUE J IDE. 1234321 123*321 12***21 1*****1 Ans : Following program is tried and tested in Blue J 3.08 version. class jaiii { public static void main(String args[]) { int i,j,l; for(i=4;i>=1;i–) { for(j=1;j<=i;j++) System.out.print(j); for(int m=i;m<4;m++) //increment o * System.out.print(“*”); for(int n=3;n>i;n–) //decrement of … Read more