数据结构用C语言编程序:26个英文字母的顺序表实现

2025-02-28 13:04:40
推荐回答(1个)
回答1:

#include
main()
{
int n=65;
while(n<91)
{
putchar(n);
n++;
printf("\n");
}
}