c语言输出可见字符时间:2023-03-08 17:55:28 #include <stdio.h> void main() { int i; //可见字符是32-126 for(i=;i<;i++) { putchar(i); } getchar(); }