InterviewSolution
Saved Bookmarks
| 1. |
Write the cd to print multiples of 7 in descending order in python |
|
Answer» Numbers Divisible by 7. To determine if a number is divisible by 7, take the last DIGIT off the number, double it and SUBTRACT the DOUBLED number from the remaining number. If the result is evenly divisible by 7 (e.g. 14, 7, 0, -7, etc.), then the number is divisible by seven.Explanation:hope it helps |
|