enter 10 numbers and find average with last digit 2 and 4
Answers
Answered by
2
Answer:
Input : 12345 Output : First digit: 1 last digit : 5 Input : 98562 Output ... To find last digit of a number, we use modulo operator %. ... then last Digit = n % 10 => 4
rinareenasharma123:
can you give me the full program
Given a number and to find first and last digit of a number.
Examples:
Input : 12345 Output : First digit: 1 last digit : 5 Input : 98562 Output : First digit: 9 last digit : 2
Given a number and to find first and last digit of a number.
Examples:
Input : 12345 Output : First digit: 1 last digit : 5 Input : 98562 Output : First digit: 9 last digit : 2
To find last digit of a number, we use modulo operator %. When modulo divided by 10 returns its last digit.
Suppose if n = 1234
then last Digit = n % 10 => 4
To finding first digit of a number is little expensive than last digit. To find first digit of a number we divide the given number by 10 until number is greater than 10. At the end we are left with the first digit.
Approach 1 (With loop):
Similar questions