Предмет:
ИнформатикаАвтор:
heavenlucasОтвет:
Объяснение:
Here's the Python code to accomplish the task:
# Reading input values
N = int(input())
K = int(input())
M = int(input())
# Creating a two-dimensional list of size N by N
two_d_list = [['-' for j in range(N)] for i in range(N)]
# Changing the element at index [K][M] to "X"
two_d_list[K][M] = 'X'
# Printing the resulting list in table format
for row in two_d_list:
print(' '.join(row))
Example Input 1:
6
4
3
Output 1:
- - - - - - -
- - - - - -
- - - - - - -
- - - - - - -
- - - X - - -
- - - - - -
Example Input 2:
9
1
1
Output 2:
- - - - - - - - - -
- X - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
Автор:
halle6rbeДобавить свой ответ
Предмет:
МатематикаАвтор:
chevyОтветов:
Смотреть
Предмет:
МатематикаАвтор:
benjaminclarkОтветов:
Смотреть
Предмет:
Қазақ тiлiАвтор:
kerrОтветов:
Смотреть