我是靠谱客的博主 自由小兔子,这篇文章主要介绍如何产生各种随机数,现在分享给大家,希望可以做个参考。

1.产生int型随机数

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> int main() {     srand(time(NULL));     int t,n = 10 ;     while( n-- ){         printf("%dn",rand());     }     return 0; }

2.产生随机小数

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> int main() {     srand(time(NULL));     int t,n = 10 ;     while( n-- ){         printf("%.2lfn",rand()*1.0/100);     }     return 0; }

3.产生字符串

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> int main() { srand(time(NULL)); int t = 99,n = 10; while( n-- ){ printf("%c",rand() % 26 + 'a'); } printf("n"); return 0; }

4.示例:

以hdu1002为例:

产生随机数代码:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> int main() { srand(time(NULL)); int T = rand()%10; printf("%dn",T); while(T--){ int n = rand()%100; for(int i = 0; i < n; i++) printf("%d",rand()%10); printf(" "); n = rand()%100; for(int i = 0; i < n; i++) printf("%d",rand()%10); printf("n"); } return 0; }

对拍文件夹应有的内容:

最后

以上就是自由小兔子最近收集整理的关于如何产生各种随机数的全部内容,更多相关如何产生各种随机数内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部