为什么在这段代码中它会做一个无限循环而不再提示用户
#include <stdio.h>
#include <string.h>
#include <ctype.h>
void to_rot13(char* value);
int main(){
char word[1024];
printf("C ROT13\nSome data to code or decode\n");
while (1){
printf(": ");
scanf("%[^\n]s", word);
to_rot13(&word);
printf(": %s\n", word);
}
return 0;
}
void to_rot13(char* value){
unsigned int x;
for (x = 0; value[x] != '\0'; x++){
if ((value[x] < 'A') || (value[x] > 'Z' && value[x] < 'a') || (value[x] > 'z')){}
else if (tolower(value[x]) <= 'm'){value[x] = value[x] + 13;}
else{value[x] = value[x] - 13;}
}
}
我想再次提示用户 我不能更精确。
答案 0 :(得分:3)
scanf("%[^\n]s", word);
将换行符保留在输入缓冲区中,因此下一个scanf
会立即返回而不读取任何其他输入,因为缓冲区中剩下的第一个char
是换行符。您需要从输入缓冲区中删除换行符。
int c;
do {
c = getchar();
}while(c != '\n' && c != EOF);
if (c == EOF) {
exit(EXIT_FAILURE); // input borked
}
另外,请注意编译器的警告并将word
而不是&word
传递给to_rot13
。
答案 1 :(得分:1)
您正在向to_rot13
发送短信(您应该发送字词或&amp;字[0])