回顾大一·C语言编程4.1(2)

逆序输出26个大写英文字母。spa #include <stdio.h> main()  //1 { char x;  //2     x='Z';  //3     while(x>='A')  //4 {   printf("%c",x);  //5     x--;  //6     }   printf("\n"); } xml
相关文章
相关标签/搜索