C1 Min Read LetuscrackonFebruary 17, 2025 Perfect Squares – Till N Given a positive integer N as the input, print all the perfect squares till N (inclusive of N). Input Format:The first line contains N. Output…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Determine if Number is a Perfect Square The program must accept an integer N as the input. The program should determine if the given number is a perfect square. If the number is a…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check if All Digits Are Perfect Squares The program must accept an integer N as the input. The task is to check whether all the individual digits in the number are perfect squares.…
Python1 Min Read LetuscrackonJune 8, 2024 Perfect Number Given a positive integer N as the input, the program must print yes if N is a perfect number. Else no must be printed. Input Format: The first…