rand.bak

来自「舍伍德算法(sherwood概率算法」· BAK 代码 · 共 11 行

BAK
11
字号
#include <stdlib.h> 
#include <stdio.h> 
#include <time.h> 

/* prints a random number in the range 0 to 99 */ 
int main(void) 
{ 
randomize(); 
printf("Random number in the 0-99 range: %d\n", random (100)); 
return 0; 
} 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?