Skip to content

Commit 43e7c03

Browse files
committed
The maximum digit in the decimal notation of a number
1 parent 8e95d13 commit 43e7c03

File tree

6 files changed

+22
-1
lines changed

6 files changed

+22
-1
lines changed

.idea/workspace.xml

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
n = int(input('n = '))
2+
ma = 0
3+
while n>0 and ma != 9:
4+
if n%10>ma:
5+
ma = n%10
6+
n //= 10
7+
print(ma)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Write a programme that finds the maximum digit in
2+
decimal number.
3+
Input data
4+
The input string contains a natural number N. It is guaranteed that N
5+
≤ 109.
6+
The output
7+
The program has to output a single number: the maximal digit in
8+
decimal number N.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Input data
2+
12345432
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5
Loading

0 commit comments

Comments
 (0)