首页
社区
课程
招聘
[原创]发个简单的CM
发表于: 2010-12-3 16:48 9946

[原创]发个简单的CM

2010-12-3 16:48
9946
收藏
免费 0
支持
分享
最新回复 (26)
雪    币: 65
活跃值: (118)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
26
看了几个大牛的分析 不错~
2010-12-12 18:04
0
雪    币: 184
活跃值: (65)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
27
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
    char username[255];
    char code[255];
    int i;
    int len;
    username[0] = 0;
    while (username[0]!='t')
    {
        printf("Please input your username(begin with char 't'):");
        scanf("%s", username);
    }
    printf("You typed %s\n", username);
    len = strlen(username);
    for (i=0; i<len; i++)
    {
        code[i] = ((username[i] - 0x20)^i)>>1;
    }
    code[i] = 0;
    strcat(code, "dahaione");
    printf("Your code %s\n", code);
    return 0;
}

Please input your username(begin with char 't'):tpathletboy
You typed tpathletboy
Your code *(!+&$!)%#)dahaione
2010-12-19 23:28
0
游客
登录 | 注册 方可回帖
返回
//