Calculate Currency Change
Calculate Currency Change Write Code Problem Description Your friend Rahul plans to visit exotic countries all around the world. Sadly, Rahul’s math skills aren’t good. He’s pretty worried about being scammed by currency exchanges during his trip – and he wants you to make a currency calculator for him. Here are his specifications for the …
Number of bills
Number of bills Write Code Problem Description Your friend Rahul plans to visit exotic countries all around the world. Sadly, Rahul’s math skills aren’t good.He’s pretty worried about being scammed by currency exchanges during his trip – and he wants you to make a currency calculator for him. Here are his specifications for the app: …
Concatenate Two Numbers
Concatenate Two Numbers Write Code Problem Description Given two numbers A and B. Concatenate the two numbers and print it. Problem Constraints 1 <= A, B <= 104 Input Format There are two input lines The first line has a single integer A. The second line has a single integer B. Output Format Print in a single line the concatenated …
Fizz Buzz Implementation
Fizz Buzz Implementation Write Code Write a program that prints the numbers from 1 to 100 and for multiples of ‘3’ print “Fizz” instead of the number and for the multiples of ‘5’ print “Buzz”. 1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, Fizz Buzz, 16, 17, Fizz, 19, …