Visual Basic, .NET, ASP, VBScript
 

   
   
     

Форум - Общий форум

Страница: 1 |

 

  Вопрос: Подскажите несведущему.................... цикл... Добавлено: 12.03.03 22:17  

Автор вопроса:  Дeнис

For i = n5 To 0 Step -1

a3(i + 1) = a3(i)

Next i

говорит оверфлоу.......

Ответить

  Ответы Всего ответов: 5  

Номер ответа: 1
Автор ответа:
 P



ICQ: 346632205 

Вопросов: 5
Ответов: 86
 Профиль | | #1 Добавлено: 13.03.03 00:10
оверфлоу значит переполнение какой то переменной. пересмотри их типы

Ответить

Номер ответа: 2
Автор ответа:
 CyRax



Разработчик Offline Client

ICQ: 204447456 

Вопросов: 180
Ответов: 4229
 Web-сайт: basicproduction.nm.ru
 Профиль | | #2
Добавлено: 13.03.03 01:59

У него не типы, а скорее всего нестыковка (i + 1) с верхней границей массива.

a3(i + 1) = a3(i)

Ответить

Номер ответа: 3
Автор ответа:
 Страшный Сон



Вопросов: 46
Ответов: 848
 Профиль | | #3 Добавлено: 13.03.03 20:16
Тогда был бы Subscript out of Range.

Ответить

Номер ответа: 4
Автор ответа:
 CyRax



Разработчик Offline Client

ICQ: 204447456 

Вопросов: 180
Ответов: 4229
 Web-сайт: basicproduction.nm.ru
 Профиль | | #4
Добавлено: 14.03.03 01:24

Overflow (Error 6)

An overflow results when you try to make an assignment that exceeds the limitations of the target of the assignment. This error has the following causes and solutions:

  • The result of an assignment, calculation, ordata type conversion is too large to be represented within the range of values allowed for that type ofvariable.

    Assign the value to a variable of a type that can hold a larger range of values.

  • An assignment to aproperty exceeds the maximum value the property can accept.

    Make sure your assignment fits the range for the property to which it is made.

  • You attempt to use a number in a calculation, and that number is coerced into an integer, but the result is larger than an integer. For example:
        ;Dim x As Long    x = 2000 * 365   ' Error: Overflow

    To work around this situation, type the number, like this:

        ;Dim x As Long    x = CLng(2000) * 365

Ответить

Номер ответа: 5
Автор ответа:
 Страшный Сон



Вопросов: 46
Ответов: 848
 Профиль | | #5 Добавлено: 14.03.03 13:55

Делай так:

 

For i = n5 - 1 To 0 Step -1

a3(i + 1) = a3(i)

Next i

 

Всё должно сойтись.

Ответить

Страница: 1 |

Поиск по форуму



© Copyright 2002-2011 VBNet.RU | Пишите нам