标签:分享 namespace str 随机 函数 http names null com
rand和srand。后者产生随机种子,前者利用后者产生的随机种子进而产生随机数。例如:
产生随机大写字母:
1 #include<iostream> 2 #include<stdlib.h> 3 #include<time.h> 4 #include<conio.h> 5 using namespace std; 6 int main() 7 {while(1) 8 { 9 srand(time(NULL)); 10 char ch; 11 ch=rand()%27+64;//对rand随机出来的数取余后的数一定小于等于26(26个字母),而大写字母A的ASCII为65; 12 cout<<ch<<"\n"; 13 getch(); 14 } 15 return 0; 16 }
运行结果:
标签:分享 namespace str 随机 函数 http names null com
原文地址:http://www.cnblogs.com/fantuanjun/p/6710151.html