Maths ยท Problem: Given an integer, find the number of digits in it. Example: Input: 1234Output: 4Input: -789435Output: 6 Approach 1) Iterative Every time...