Справочник Жаркова по проектированию и программированию искусственного интеллекта. Том 5: Программирование искусственного интеллекта на Visual Basic (продолжение 1). Валерий Алексеевич Жарков
Чтение книги онлайн.
Читать онлайн книгу Справочник Жаркова по проектированию и программированию искусственного интеллекта. Том 5: Программирование искусственного интеллекта на Visual Basic (продолжение 1) - Валерий Алексеевич Жарков страница 31
If str(1) = "e" Then
Chr1.Text = "E"
End If
If str(0) = "e" Then
Chr2.Text = "E"
End If
ElseIf Word_in.TextLength = 3 Then
If str(0) = "e" Then
Chr3.Text = "E"
End If
If str(1) = "e" Then
Chr2.Text = "E"
End If
If str(2) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 4 Then
If str(0) = "e" Then
Chr4.Text = "E"
End If
If str(1) = "e" Then
Chr3.Text = "E"
End If
If str(2) = "e" Then
Chr2.Text = "E"
End If
If str(3) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 5 Then
If str(0) = "e" Then
Chr5.Text = "E"
End If
If str(1) = "e" Then
Chr4.Text = "E"
End If
If str(2) = "e" Then
Chr3.Text = "E"
End If
If str(3) = "e" Then
Chr2.Text = "E"
End If
If str(4) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 6 Then
If str(0) = "e" Then
Chr6.Text = "E"
End If
If str(1) = "e" Then
Chr5.Text = "E"
End If
If str(2) = "e" Then
Chr4.Text = "E"
End If
If str(3) = "e" Then
Chr3.Text = "E"
End If
If str(4) = "e" Then
Chr2.Text = "E"
End If
If str(5) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 7 Then
If str(0) = "e" Then
Chr7.Text = "E"
End If
If str(1) = "e" Then
Chr6.Text = "E"
End If
If str(2) = "e" Then
Chr5.Text = "E"
End If
If str(3) = "e" Then
Chr4.Text = "E"
End If
If str(4) = "e" Then
Chr3.Text = "E"
End If
If str(5) = "e" Then
Chr2.Text = "E"
End If
If str(6) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 8 Then
If str(0) = "e" Then
Chr8.Text = "E"
End If
If str(1) = "e" Then
Chr7.Text = "E"
End If
If str(2) = "e" Then
Chr6.Text = "E"
End If
If str(3) = "e" Then
Chr5.Text = "E"
End If
If str(4) = "e" Then
Chr4.Text = "E"
End If
If str(5) = "e" Then
Chr3.Text = "E"
End If
If str(6) = "e" Then
Chr2.Text = "E"
End If
If str(7) = "e" Then
Chr1.Text = "E"
End If
ElseIf Word_in.TextLength = 9 Then
If str(0) = "e" Then
Chr9.Text = "E"
End If
If str(1) = "e" Then
Chr8.Text = "E"
End If
If str(2) = "e" Then
Chr7.Text = "E"
End