gpt4 book ai didi

c - 为什么这个 C 程序不提取转义的反斜杠?

转载 作者:行者123 更新时间:2023-12-04 10:42:50 24 4
gpt4 key购买 nike

我正在做 K&R 的练习 1-10

Write a program to copy its input to its output, replacing each tab by \t, each backspace by \b and each backslash by \\. This makes tabs and backspaces visible in an unambiguous way.

我想出了这个...

#include <stdio.h>

int main () {

int c;
printf("\n"); // For readability

while ((c = getchar()) != EOF) {

switch (c) {
case '\t':
printf("\\t");
break;
case '\b':
printf("\\b");
case '\\':
printf("\\");
break;
default:
printf("%c", c);
break;
}

}

}

出于某种原因,它拒绝接触反斜杠。例如,当输入诸如 Hello how\are you? 这样的字符串时,程序的输出是 Hello\thow\are you? 这意味着它转换了制表符 OK,但不是反斜杠。

我做错了什么吗?

最佳答案

您可能想要 printf("\\\\");,而不仅仅是 printf("\\");

关于c - 为什么这个 C 程序不提取转义的反斜杠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3465454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com