From turtle import * from random import *
t = Turtle()
t.penup()
t.goto(-100,100)
t.pendown()
t.speed(100)
#поле
for i in range(0,15):
t.write(i)
t.right(90)
t.forward(200)
#возврат
t.left(180)
t.forward(200)
t.right(90)
t.forward(20)
first=Turtle()
first.shape("turtle")
first.color("red")
first.penup()
first.goto(-120,70)
first.pendown()
second=Turtle()
second.shape("turtle")
second.color("blue")
second.penup()
second.goto(-120,40)
second.pendown()
third=Turtle()
third.shape("turtle")
third.color("yellow")
third.penup()
third.goto(-120,-20)
third.pendown()
four=Turtle()
four.shape("turtle")
four.color("green")
four.penup()
four.goto(-120,-50)
four.pendown()
five=Turtle()
five.shape("turtle")
five.color("purple")
five.penup()
five.goto(-120,-80)
five.pendown()
#зрители
bolCount = randint(1,10)
for i in range(0, bolCount):
bol = Turtle()
bol.shape("turtle")
bol.color(randint(0,255),randint(0,255),randint(0,255))
bol.penup()
bol.goto(-90+25*i, -120)
bol.pendown()
bol.left(90)
x_first=0
x_second=0
x_third = 0
x_four = 0
x_five = 0
text = input('Прогноз, какая черепаха победит?')
tex = Turtle()
tex.penup()
tex.goto(-120,120)
tex.hideturtle()
tex.write('Ты считаешь, что победит ' + text, font = ('Arial', 12, 'bold'))
while ((x_first<305) and (x_second<305) and (x_third<305) and (x_four<305) and x_five<305):
first_step = randint(1,5)
x_first += first_step
first.forward(first_step)
second_step = randint(1,5)
x_second += second_step
second.forward(second_step)
third_step = randint(1,5)
x_third += third_step
third.forward(third_step)
four_step = randint(1,5)
x_four += four_step
four.forward(four_step)
five_step = randint(1,5)
x_five += five_step
five.forward(five_step)
по этому коду надо выполнить задание:
С консоли мы можем угадать, какая черепашка победит, а с программы мы можем это однозначно определить!
Давай по завершению гонки выводить в консоль и на экран какая черешка победила.
язык python
В восьмиричной системе: разбиваете двоичное представление на группы по 3 бита справа налево
011 = 3
011 = 3
011 = 3
10 = 2
Тогда в восьмиричной системе: 2333(8) = 2*8^3+3*8^2+3*8^1+3 = 1024+192+24+3=1243(10)
В шестнадцатиричной системе: разбиваете двоичное представление на группы по 4 бита справа налево
1011 = B = 11(10)
1101 = D(16) = 13(10)
100 = 4
Тогда в шестнадцатиричной системе
4DB(16) = 4*16^2+13*16^1+11 =1024+208+11=1243(10)
z:string[10];
x:string[2];
i,j,k,m: integer; //новые переменные
Begin
Write('введите строку текста - St');
Readln(St);
k:=0; //обнуляем на всякий случай
z:='0123456789';
i:=1;
for j:=1 to length(St) do //начало
begin;
for m:=1 to 10 do
if St[j]=z[m] then inc(k);
end;
if k=0 then
begin;
writeln('в тексте нет цифр');
exit;
end; //конец
while i<=length(st)-1 do
begin
x:=copy(st,I,2);
if (x[1]=x[2]) and (pos(x[1],z)<>0) then
begin
delete(st,i,2);
insert('две',st,i);
i:=i+1;
end;
i:=i+1;
end;
writeln('преобразованная строка ', st);
End.