会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Loading
Gary_818
博客园
首页
新随笔
联系
订阅
管理
2022年11月8日
2021级信息工程学院《C语言程序设计》阶段1考试
摘要: Problem A: 十六进制字符个数统计 Solution 每个数字转16进制,逐位判断即可 Code #include <stdio.h> int ans; void check(int n){ while(n){ int tmp = n % 16; if(tmp >= 10 && tmp <=
阅读全文
posted @ 2022-11-08 20:17 Gary_818
阅读(629)
评论(2)
推荐(0)
编辑
公告