6. 16.1  编程练习

// 6.16.1
#include <stdio.h>
int main(void)
{
char Alphabet[26];

int index = 0;
int a = 97;
for (index = 0; index < 26; index++)
{
// scanf("%c", &Alphabet[index]);
Alphabet[index] = a;

printf("Alphabet is %c\n", Alphabet[index]);
a++;
}
printf("\n");

return 0;


}

猜你喜欢

转载自www.cnblogs.com/EisNULL/p/10571298.html