旧物有情 # 字符串翻转求解二进制转换 摘要:``` #include #include using namespace std; int main(){ int n; while(cin >> n){ …… 题解列表 2024年10月10日 0 点赞 0 评论 39 浏览 评分:0.0
1192: 十->二进制转换 摘要:```cpp #include #include using namespace std; //进制转换并输出函数不考虑特殊情况 void transport(int x) { …… 题解列表 2024年10月03日 0 点赞 0 评论 36 浏览 评分:9.9
位运算是个简便方法 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int wei(int n) { int cnt=0; while(n!=0) {…… 题解列表 2024年09月17日 0 点赞 0 评论 30 浏览 评分:0.0
优质题解 1192: 十->二进制转换(位运算做法) 摘要:解题思路:看了一些题解,都是将数字转成二进制放入数组中,或者栈里面,我认为这道题用位运算来做是最简洁最舒服的,也不用开辟额外数组。我们知道,数字在计算机的内部都是使用二进制进行存储的,严格来说,存储的…… 题解列表 2023年11月18日 0 点赞 0 评论 382 浏览 评分:9.9
有注释 简单易懂 STL stack 摘要:```cpp #include #include #include using namespace std; stacks; int main() { //stack 先进后出 …… 题解列表 2023年04月26日 0 点赞 0 评论 96 浏览 评分:0.0
十进制转二进制 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<stack>stack<char> s;int main(){ int…… 题解列表 2023年02月01日 0 点赞 0 评论 71 浏览 评分:0.0
1192: 十->二进制转换 摘要:```cpp #include #include using namespace std; int n,flag=0; vectorarr; void BinaryChange(int n…… 题解列表 2022年12月30日 0 点赞 0 评论 110 浏览 评分:9.9
十->二进制转换常规算法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int pa;while(cin>>pa){ //如何判断输…… 题解列表 2022年08月14日 0 点赞 0 评论 78 浏览 评分:0.0
十->二进制转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string decToBin(int n){ string ans; …… 题解列表 2022年05月07日 0 点赞 0 评论 133 浏览 评分:0.0
十->二进制转换【位运算】 摘要:```cpp #include #include using namespace std; int n; int flag=0; vector arr; void BinaryChang…… 题解列表 2022年03月16日 0 点赞 0 评论 187 浏览 评分:9.9