"Индекс находится вне границ массива" - C#

Узнай цену своей работы

Формулировка задачи:

Листинг программы
  1. using System.Collections.Generic;
  2. using System.ComponentModel;
  3. using System.Data;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.IO;
  9.  
  10. namespace WindowsFormsApplication18
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18.  
  19. Fil ur = new Fil();
  20. private void button1_Click(object sender, EventArgs e)
  21. {
  22. listBox1.Items.Clear();
  23. ur.Creation(textBox1);
  24. }
  25. class Fil
  26. {
  27. public void Creation(TextBox m)
  28. {
  29. File.WriteAllText("doce.txt", m.Text, Encoding.UTF8);
  30. }
  31. }
  32. private void button4_Click(object sender, EventArgs e)
  33. {
  34. textBox1.Text = File.ReadAllText("doce.txt", Encoding.UTF8);
  35. }
  36. private void button6_Click(object sender, EventArgs e)
  37. {
  38. {
  39. File. WriteAllText("doce.txt", textBox1.Text, Encoding.UTF8);
  40.  
  41. string input="";
  42. textBox1.Text = input;
  43. listBox1.Items.Clear();
  44. string[] str = input.Split(new Char[] { ' ', ',', '.', ':', '!', '?', ';' }, StringSplitOptions.RemoveEmptyEntries);
  45. int maxlen = 0, index = 0;
  46. for (int i = 0; i < str.Length; i++)
  47. {
  48. if (str[i].Length > maxlen)
  49. {
  50. maxlen = str[i].Length;
  51. index = i;
  52. }
  53. }
  54. listBox1.Items.Add("Самое длинное слово: " +str[index]);
  55. }
  56. }
  57. }
  58. }

Решение задачи: «"Индекс находится вне границ массива"»

textual
Листинг программы
  1. string input="";
  2. textBox1.Text = input;
  3. listBox1.Items.Clear();
  4. string[] str = input.Split(new Char[] { ' ', ',', '.', ':', '!', '?', ';' }, StringSplitOptions.RemoveEmptyEntries);
  5. int maxlen = 0, index = 0;
  6. for (int i = 0; i < str.Length; i++)
  7. {
  8.     if (str[i].Length > maxlen)
  9.     {
  10.         maxlen = str[i].Length;
  11.         index = i;
  12.     }
  13. }
  14. listBox1.Items.Add("Самое длинное слово: " +str[index]);

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 4.231 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы