我是一名初学者,谁能帮我编写一道题呢,
要求输入一个三位数,比如456,执行后,输入出654,十分感谢!
int i; scanf("%d",&i); while(i!=0); { printf("%d",i%10); i/=10; }
#include <stdio.h> main() { int a,b,c,i; scanf("%d",&i); a=i/100; b=i/10-a*10; c=i-a*100-b*10; i=a+b*10+c*100; if(a!=0&&b!=0&&c!=0) printf("%d",i); else printf("数据错误"); }
#include<string.h> main() { char str[20]; gets(str); printf("%s ",strrev(str)); }