InterviewSolution
Saved Bookmarks
| 1. |
Write a program to check whether a number is perfect number or not using while loop |
|
Answer» HI....its a python program...EXPLANATION:n = INT(input("enter a number: "))
i = 1
sum = 0
while(i |
|