Computer Science
Write a program to take two numbers and print if the first number is fully divisible by second number or not.
Related Questions
Try writing program (similar to previous one) for three digit number i.e., if you input 123, the program should print 321.
Write a program to take a 2-digit number and then print the reversed number. That is, if the input given is 25, the program should print 52.
Write a program to take year as input and check if it is a leap year or not.
Write a program that reads a number of seconds and prints it in form : mins and seconds, e.g., 200 seconds are printed as 3 mins and 20 seconds.
[Hint. use // and % to get minutes and seconds]