September 2021 0 67 Report
Что будет выведено на экран после выполнения программы? Pascal:

s := '123456789';
s1 := 'abcdef';
s := copy(s, 5, 3) + '0' + copy(s1, 2, 3);
writeln(s);

Python:

s = '123456789'

s1 = 'abcdef'

s = s[4:7] + '0' + s1[1:4]

print(s)


Кавычки в ответе писать не надо.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2025 SCHOLAR.TIPS - All rights reserved.