- 编程
任意数字按位提取
- 2025-2-10 12:04:02 @
任意数字按位提取
int n = 342678;
while(n > 0){
cout << n % 10 << endl;
n = n / 10;
}
https://ok.hn.cn/p/P297?tid=67a95470489b672885e28a64# https://ok.hn.cn/p/T1112?tid=67a95470489b672885e28a64# https://ok.hn.cn/p/T1109?tid=67a95470489b672885e28a64# https://ok.hn.cn/p/T1068?tid=67a95470489b672885e28a64#
上方链接是题目,点击查看。
下方链接也是题目。
0 条评论
目前还没有评论...