会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
BlueValentines
慢慢来,一切都会好起来的
博客园
首页
新随笔
联系
管理
订阅
2020年1月28日
(函数)P1149 火柴棒等式
摘要: 题解: #include<stdio.h>int a[10]={6,2,5,5,4,5,6,3,7,6};int num(int n){ //计算所需火柴棒的个数 int sum=0; sum+=a[n%10]; //小心特殊情况——0 while(n>9){ n/=10; sum+=a[n%10]
阅读全文
posted @ 2020-01-28 10:32 BlueValentines
阅读(116)
评论(0)
推荐(0)
公告