标题:[求助]哪位好心大哥大姐帮小弟一下
只看楼主
taiyaolong
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2004-6-5
 问题点数:0 回复次数:5 
[求助]哪位好心大哥大姐帮小弟一下

我是一名初学者,谁能帮我编写一道题呢,

要求输入一个三位数,比如456,执行后,输入出654,十分感谢!

搜索更多相关主题的帖子: 大姐 好心 
2004-06-05 01:24
jzh2004
Rank: 1
等 级:新手上路
帖 子:341
专家分:0
注 册:2004-4-30
得分:0 

int i; scanf("%d",&i); while(i!=0); { printf("%d",i%10); i/=10; }


我的主页 http://www.
2004-06-05 09:30
jianenghui
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2004-6-6
得分:0 

#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("数据错误"); }

2004-06-06 12:03
jiely
Rank: 1
等 级:新手上路
帖 子:106
专家分:0
注 册:2004-5-15
得分:0 

#include<string.h> main() { char str[20]; gets(str); printf("%s ",strrev(str)); }


我的爱好:C和数据库!正在学VC++ 我的QQ:345895839,有共同爱好的加我!期待着与你共同进步!
2004-06-06 12:40
xph20001021
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2004-6-6
得分:0 
main()
{
int a[2],i;
    for(i=0;i&lt;=2;i++)
       scanf("%1d",&amp;a[i]);
    for(i=2;i&gt;=0;i--)
       printf("%1d" ,a[i]);
getch();
}  

2004-06-06 22:13
game6666
Rank: 2
等 级:论坛游民
帖 子:25
专家分:24
注 册:2010-4-23
得分:0 
#include<stdio.h>
void main()
{
    int a,b,c,d,f;
    scanf("%d",&a);
    printf("%d\n",a);
    b=a/100;
    c=(a%100)/10;
    d=(a%100)%10;
    f=d*100+c*10+b;
    printf("%d\n",f);
}

坚持.........
2010-05-29 15:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-2040-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.225151 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved