Question :- wap to print the numbers from 1 to 50. But in multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz"
solution:-
public class FizzBTest{
//Create main function
public static void main(String args[])
{
for(int i = 1; i <= 50; i++)
{
if(i % (3*5) == 0) System.out.println("FizzBuzz");
else if(i % 5 == 0) System.out.println("Buzz");
else if(i % 3 == 0) System.out.println("Fizz");
else System.out.println(i);
}
}
}
Posted By:M@ddy Th@kurOn:Shareyourconscience
Comments
Post a Comment