#include <stdio.h>

int main()

{ char c;

  for(c='A';c<='Z';c++)

    printf("%d: %c\n",c,c);

  return 0;  

}

更多推荐

使用for循环打印出大写字母的ASCII码对照表