Computer Science
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.
Related Questions
Write a program to take two numbers and print if the first number is fully divisible by second number or not.
Write a program to take two inputs for day, month and then calculate which day of the year, the given date is. For simplicity, take 30 days for all months. For example, if you give input as: Day3, Month2 then it should print "Day of the year : 33".
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 year as input and check if it is a leap year or not.