#include <stdlib.h>
void main()
{
int a,ebx,esi,edx,len,eax,n;
char name[50]={0};
printf("please input your name:");
ebx=1228473093;
esi=1214452256;
scanf("%s",name);
len=strlen(name);
for(;len>=1;)
n=name[len];
{ebx=n^ebx;
esi=esi^ebx;
{if(ebx%2=0)
{ebx>>=1;
ebx=ebx^18875153;}
else ebx>>=1;}
edx=edx+1;
len=len-1;}
printf("your password is:%d\n",ebx);
printf("keyGen by roba enjoy Cracking\n");
}
错误 noname.c 16: 需要逻辑0或非0在 main 函数中
----------------解决方案--------------------------------------------------------
{if(ebx%2=0)
----------------解决方案--------------------------------------------------------
那应该怎么写呢,判断奇偶
----------------解决方案--------------------------------------------------------
if(ebx%2=0)
判断“等于” 用 ebx%2==0
另外 应包含头文件
#include<stdio.h> //包含 printf(),scnaf() 等函数
#include<string.h> //包含 strlen() 等函数
ebx=1228473093;
esi=1214452256;
这两个变量应为 long 型
for(;len>=1;)
n=name[len];
{ebx=n^ebx;
esi=esi^ebx;......
那个 { 是在 n=name 前面的吧 或是 n=name[len] 无限循环
----------------解决方案--------------------------------------------------------
请问如何取一个字串中的一个字母,请给示范一下好吗,我太菜了
----------------解决方案--------------------------------------------------------
请说明白点先 是什么情况的取字母 基本的是:
#include<stdio.h>
#define N 50
void main()
{
char str[N];
int i;
printf("输入字符串.\n");
gets(str);
printf("%c\n",str[0]);//打印单个字母
printf("%s\n",str); //打印字符串
puts(str); //打印字符串
}
----------------解决方案--------------------------------------------------------