学向勤中得,萤窗万卷书。这篇文章主要讲述linux rand application相关的知识,希望能为你提供帮助。
code:
1 #include < stdio.h> 2 #include < stdlib.h> 3 #include < time.h> 4 5 #define random_1(a, b) ((rand()%(b - a)) + a) 6 #define random_2(a, b) ((rand()%(b - a + 1)) + a) 7 8 int main(int argc, char **argv) 9 { 10srand((int)time(NULL)); 11int arr[10]; 12for(int i = 0; i < 10; i++){ 13arr[i] = random_1(1, 20); 14} 15 16for(int i = 0; i < 10; i++){ 17printf("%d ", arr[i]); 18} 19 20 21return 0; 22 }
【linux rand application】
推荐阅读
- 安卓Kotlin单元测试/ Collection, ArrayList依赖的解耦/ MockK
- Part-Appium-1
- 安装cnpm后运行报cnpm : 无法加载文件 C:UsersyizonAppDataRoamingpmcnpm.ps1,因为在此系统上禁止运行脚本
- djang项目中的疑问及解决办法(ValueError: Invalid model reference 'apps.user.User'. String model referenc
- 获取app的应用包名和入口页面
- Android SDK Tools,Platform-tools,Build-tools分别有什么作用()
- springboot启动时报错 错误: 找不到或无法加载主类 com.xxx.xxx.Application
- HBuilder搭建Android模拟器
- Pandas DataFrame.loc[]示例