c语言 随机数

来源:互联网 发布:电脑网络接口类型 编辑:程序博客网 时间:2024/06/02 04:15

c语言        随机数


#include <stdio.h>#include <stdlib.h>#include<time.h>int main(){    int i,j;    srand((int)time(0));    for(j=0;j<10;j++)    {        for(i=0;i<10;i++)        {            printf("%d\t",rand());        }        printf("\n");    }    system("pause");    return 0;}


0 0
原创粉丝点击