C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Discount – 20% The program must accept the price of an item as the input. The program must print the price of the item after 20 percent discount with the…
C Java Kickstart Python1 Min Read LetuscrackonMay 17, 2025 String – Print Twice The program must accept a string value and print it twice. Example Input/Output 1:Input:Letuscrack Output:LetuscrackLetuscrack Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 17, 2025 Canteen Expense A student has Rs.100 in hand. He buys snacks for X rupees from the canteen. The program must print the amount remaining with the student.…
C Java Kickstart Python1 Min Read LetuscrackonMay 16, 2025 Minutes to Seconds The program must accept minutes and convert into seconds. Note: 1 minute = 60 seconds Example Input/Output 1:Input:5 Output:300 Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 16, 2025 Print – 1 to 222 The program must print from 1 to 222, with the numbers separated by a space. Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 15, 2025 1 to 100 – Hyphen Separated The program must print from 1 to 100 with the values separated by a hyphen. Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 15, 2025 One to Five – Words The program must accept a number from 1 to 5 and print it as a word as given below.1 – One2 – Two3 – Three4 – Four5…
C Java Kickstart Python1 Min Read LetuscrackonMay 14, 2025 Hot Cold or Normal The program must print Hot if the given temperature value is more than 30, must print Cold if the given value is less than…
C Java Kickstart Python1 Min Read LetuscrackonMay 14, 2025 Ten Multiples The program must accept a number and print it’s first ten multiples. Example Input/Output 1:Input:3 Output:3 6 9 12 15 18 21 24 27 30…
C Java Kickstart Python1 Min Read LetuscrackonMay 13, 2025 Division – Two Values The program must accept two numbers and print the value (up to two decimal places) when they are divided. Example Input/Output…