C Java Kickstart Python1 Min Read LetuscrackonMay 3, 2025 Print the Previous Number The program must accept a number and print its previous number. Example Input/Output 1:Input:68 Output:67 Example Input/Output 2:Input:100…
C Java Kickstart Python1 Min Read LetuscrackonMay 2, 2025 Print the Next Number The program must accept a number and print its next number. Example Input/Output 1:Input:5 Output:6 Example Input/Output 2:Input:99 Output:100…
C Java Kickstart Python1 Min Read LetuscrackonMay 1, 2025 Add Two Numbers Accept two numbers and print their sum. Example Input/Output 1:Input:10 20 Output:30 Example Input/Output 2:Input:137 11 Output:148 Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonApril 29, 2025 Subtract Two Numbers The program must accept two numbers and subtract them. Example Input/Output 1:Input:100 40 Output:60 Example Input/Output 2:Input:50 200…
C Java Kickstart Python1 Min Read LetuscrackonApril 29, 2025 Multiply by 2 The program must accept a number and multiply it by 2. Example Input/Output 1:Input:10 Output:20 Example Input/Output 2:Input:50 Output:100…
C Java Kickstart Python1 Min Read LetuscrackonApril 28, 2025 Print Cube The program must accept a number and print it’s cube. Example Input/Output 1:Input:5 Output:125 Example Input/Output 2:Input:3 Output:27…
C Java Kickstart Python1 Min Read LetuscrackonApril 26, 2025 Print Square The program must accept a number and print it’s square. Example Input/Output 1:Input:5 Output:25 Example Input/Output 2:Input:9…
Java1 Min Read LetuscrackonFebruary 21, 2025 JAVA – File Handling – Sort Students Java Program to sort the students using file Handling JAVA – File Handling – Sort Students: A list of name and marks for N…
Java1 Min Read LetuscrackonFebruary 19, 2025 JAVA – File Handling – Largest Integer Java Program to find the largest integer using file Handling Java File Handling: An array of N integers is read from a file. The file name is…
Java1 Min Read LetuscrackonFebruary 13, 2025 Smallest Substring Program in Java The program must accept a string S as the input. The program must print the smallest substring containing all the distinct…