标题:请大牛求解,为什么我输入的范围最大值不同,有的时候不报错,也没有警告, ...
只看楼主
空夏
Rank: 1
等 级:新手上路
帖 子:2
专家分:5
注 册:2017-12-21
结帖率:100%
已结贴  问题点数:20 回复次数:1 
请大牛求解,为什么我输入的范围最大值不同,有的时候不报错,也没有警告,但是电脑说它是病毒,然后运行不出来,换一个最大值就可以。
#include <stdlib.h>
#include<math.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[])
 {
    int i,j,a[4][4];
    for(i=0;i<4;i++)
       for(j=0;j<4;j++)
          {
            a[i][j]=1+rand()%1000;
            printf("%d ");
          }      
         
    return 0;
}
搜索更多相关主题的帖子: 输入 最大值 警告 运行 int 
2017-12-24 08:38
虫眼
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:10
帖 子:314
专家分:1121
注 册:2017-11-29
得分:20 
错的地方很多
程序代码:
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(void)

 {
    int i,j;
    int a[4][4]={0};
   

    for(i=0;i<4;i++){
        for(j=0;j<4;j++)
          {
            a[i][j]=(1+rand()%1000);
            printf("%d   ",a[i][j]);
          }
      printf("\n");   

    }
            

        

    return 0;
} 

2017-12-24 10:18



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-483673-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.514467 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved