摘要: View Code #include <time.h>#include <stdlib.h>#include <stdio.h>int main(){ int i,j; char ss[6]; srand((unsigned)time(NULL)); for(i=1;i<=30;i++) { for(j=0;j<6;j++) { int temp=rand(); temp=temp%10; if(temp<=3) ss[j]=temp+48; ... 阅读全文
posted @ 2012-10-20 23:41 一把刷子 阅读(319) 评论(0) 推荐(0) 编辑