1.

Write a program in java to display all the buzz numbers in a range

Answer»

no. is one which either is DIVISIBLE by 7 or ends with 7class abc{VOID display(int start,int END){for(i=start,i<=end;i++){if(i%7==0 || i%10==7)System.out.println(N);}}}Hope it helps



Discussion

No Comment Found