会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Anything is possible
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
2020年2月10日
编程将两个2位的正整数a、b合并成一个4位正整数c,合并的方式是:将a数的十位和个位依次放在c数的千位和十位上, b数的十位和个位依次放在c数的百位和个位上(例如:当a=38,b=27时,输出结果c=3287)。
摘要: #include <stdio.h>void main(){ int a,b; int x,y,z,m; printf("input the first number:"); scanf("%d",&a); printf("input the second number:"); scanf("%d"
阅读全文
posted @ 2020-02-10 13:22 Fabo
阅读(1862)
评论(0)
推荐(0)
编辑
上一页
1
2
公告