题目:编写一个程序把一个单词读入一个字符数组中, 然后倒序打印这个单词。 提示: strlen()函数(第4章介绍过) 可用于计算数组最后一个字符的下标。
#include<stdio.h>
#include <string.h>
#define NUM 400
int main()
{
int i=0;
char ch[NUM];
printf("Please enter the word you want to print: ");
scanf("%s",ch);
printf("\nPrint the word in reverse order:");
for(i=strlen(ch); i>=0; i--)
printf("%c",ch[i]);
printf("\n");
return 0;
}
运行结果:以最长的单词:Pneumonoultramicroscopicsilicovolcanoconiosis (肺尘病)为例
备注:自己写的,也可能有问题,大家一起交流呀
错误代码记录:
#include<stdio.h>
#include <string.h>
#define NUM 10
int main(){
int i,j=0;
char ch[NUM];
printf("Please enter the word you want to print: ");
for(i=0;i<=strlen(ch);i++)
{scanf("%c",&ch[i]);}
printf("\n");
for(j=strlen(ch);j>=0;j--)
{printf("%c",ch[j]);}
printf("\n");
return 0;
}