标题:写的一个模拟生成序列号的程序,有什么更好的方法写出更好的程序?
取消只看楼主
xp0213
Rank: 7Rank: 7Rank: 7
来 自:湖北武汉
等 级:黑侠
威 望:1
帖 子:210
专家分:522
注 册:2011-10-26
结帖率:86.67%
已结贴  问题点数:20 回复次数:0 
写的一个模拟生成序列号的程序,有什么更好的方法写出更好的程序?
#include<stdio.h>
#include<time.h>
#include<stdlib.h>
main()
{
    int i,j,lep,leg;
    int count=0;
    int nut=0;
    char ch;
    char str[7][10]={"abcdefghi","jklmnopqr","stuvwxyz","ABCDEFGHI","JKLMNOPQR","STUVWXYZ0","123456789"};

    srand((unsigned)time(NULL));

    for(i=0;i<7;i++)
    {
        for(j=0;j<10;j++)
        {
            lep=rand()%10;
            leg=rand()%7;
            ch=str[i][lep];
            str[i][lep]=str[leg][j];
            str[leg][j]=ch;
        }
    }

    while(1)
    {
        nut=0;
        while(1)
        {
            lep=rand()%10;
            leg=rand()%7;
            if(str[leg][lep]!=' ' && str[leg][lep]!='\0')  
            {
                printf("%c",str[leg][lep]);               
                nut++;                                    
            }
            if(nut==4)break;
        }
        ++count;

        if(count!=4)
        {
            printf("-");
        }

        if(count==4)
        {
            break;   
        }
    }
    printf("\n");
  
}
搜索更多相关主题的帖子: abcdefghi include 序列号 count 
2013-08-17 21:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-419289-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.118258 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved