要用到標(biāo)準(zhǔn)庫里隨機(jī)數(shù)函數(shù),
#include<stdio.h>
#include<stdlib.h>
#include<stdio.h>
#include<time.h>/*需引用的頭文件*/
intmain(void)
{
srand((unsigned)time(NULL));/*定義隨機(jī)種子保證每次產(chǎn)生的隨機(jī)數(shù)都不一樣*/
intn=rand()%(100-0)+1;/*n為X~Y之間的隨機(jī)數(shù)*/
printf("本次輸出的數(shù)字是:%d\n",n);
return0;
}