[编程入门]二进制移位练习-题解(C++代码) 摘要:```cpp #include #include using namespace std; int f(int i){ int sum=1; for(int j=0;j>n…… 题解列表 2020年04月18日 0 点赞 0 评论 758 浏览 评分:0.0
没什么好说的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int i; scanf("%d",&i); i=(i>>4)&(~(~0<<4)); …… 题解列表 2024年08月29日 0 点赞 0 评论 69 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); a=(a>>4)&15; printf("…… 题解列表 2018年12月03日 0 点赞 1 评论 171 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fun(int x);int main(void){ int a; scanf("%d", &a); fun…… 题解列表 2019年02月17日 0 点赞 0 评论 441 浏览 评分:0.0
编写题解 1772: [编程入门]二进制移位练习 摘要:解题思路:题目不难,就是转完而精致再转回来,但是题目的描述有点恶心注意事项:注意题目中说的是从右端开始的第四到第七位,但是截取出来的数字还是要求从左往右计算的。我注释了很多测试代码,直到最后面看了其他…… 题解列表 2021年11月26日 0 点赞 0 评论 222 浏览 评分:0.0
Hifipsysta-1772-[编程入门]二进制移位练习(C++代码)手写二进制转换 摘要:```cpp #include #include #include #include using namespace std; int main(){ vector myve…… 题解列表 2022年02月11日 0 点赞 0 评论 127 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,m,n,a; scanf("%d %d %d",&n,&m,&a); for(i=n…… 题解列表 2017年10月22日 0 点赞 0 评论 777 浏览 评分:0.0
【C语言题解】二进制移位练习 摘要:## 思路 右移4到7位,按权重累加,求得十进制结果 ## 代码 ```cpp #include int main(){ int a, s = 0, k = 1; scanf ("%…… 题解列表 2024年07月25日 0 点赞 0 评论 190 浏览 评分:0.0
[编程入门]二进制移位练习-题解(Python代码) 摘要:解题思路:注意事项:参考代码:def binary(d): s = "" while d > 0: s = str(d % 2) + s d //= 2 …… 题解列表 2020年07月23日 0 点赞 0 评论 319 浏览 评分:0.0
1772: [编程入门]二进制移位练习题解,利用移位运算(C代码) 摘要:解题思路:1.输入整数2.向右移4位,使4-7变成了0-33.与二进制1111(即0x0f)相与,除0-3位外都为04.输出注意事项:参考代码:#include <stdio.h> int ma…… 题解列表 2021年05月31日 0 点赞 0 评论 201 浏览 评分:0.0