程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> for- run-time check failure #2 stack around variable

for- run-time check failure #2 stack around variable

編輯:編程綜合問答
run-time check failure #2 stack around variable

能輸出正確結果可是彈出這個錯誤窗口是怎麼回事?

#include<stdio.h>
#include<math.h>

int main(){
    int a[3];

    for (a[0] = 1; a[0] < 21; a[0]++)
    for (a[1] = 1; a[1] < a[0]; a[1]++)
    for (a[2] = 1; a[2] < a[1]; a[2]++)
    for (a[3] = 1; a[3] < a[2]; a[3]++)
    {
        if (abs(1.0 / a[0] + 1.0 / a[1] + 1.0 / a[2] + 1.0 / a[3] - 1) < 0.0001)
            printf("%d %d %d %d\n", a[0], a[1], a[2], a[3]);
    }

    return 0;
}

最佳回答:


越界了吧,數組有索引超出范圍了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved