c语言输出所有字符代码正确例题

34 阅读1分钟

正确例题 #include <stdio.h> int main() { for(int i=30; i<128; i++) printf("%c", i); return 0; }

!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~

正确例题 #include <stdio.h> int main() { for(int i=30; i<128; i++) printf("%c \n", i); return 0; }

正确例题 #include <stdio.h> int main() { for(int i=30; i<128; i++) printf("\%c \n", i); return 0; }