設計一個洗牌、發牌的小程序

發牌、洗牌編程 程序如下: #include <stdio.h> int main () { int i, n; int count[52]={0}; srand((unsigned int)time(NULL)); for (i=0; i<52;i++) { n=rand()%52; while (count[n]==1) { n=rand()%52; }
相關文章
相關標籤/搜索