InterviewSolution
Saved Bookmarks
| 1. |
Write a program to find and print all four-digit numbers of the type ABCD, where: A+B = C+D. Hint: • Implement it with four for-loops. one for each digit. • The outermost loop will define the thousands. It will start from 1 and the rest of the loops – from 0. They will determine the hundreds, the tens and the units. |
|
Answer» Implement it with four for- loops. one for each digit. • The outermost LOOP will define the thousands. It will start from 1 and the rest of the loops – from 0. Explanation:HOPE it helps youplease mark as Brainliest.⭐️⭐️⭐️ |
|