各位大神看看我那错了 摘要: #include using namespace std; /* run this program using the console pauser or add your own…… 题解列表 2019年11月17日 0 点赞 0 评论 410 浏览 评分:0.0
二级C语言-进制转换-题解(C语言代码) (栈的链式存储) 摘要:```c #include #include //栈(先进后出 FILO) typedef struct stack{ //typedef关键字,用户自定义数据类型(只是这种数据类…… 题解列表 2019年10月20日 0 点赞 1 评论 406 浏览 评分:9.3
二级C语言-进制转换-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int num=0; char str[100]; …… 题解列表 2019年10月01日 0 点赞 0 评论 548 浏览 评分:0.0
C二级辅导-进制转换-题解(C语言代码) 摘要:```c #include int main() { int n; int a[100]; int i=0; int p; scanf("%d"…… 题解列表 2019年08月24日 0 点赞 0 评论 650 浏览 评分:0.0
C二级辅导-进制转换-题解(C语言代码) 摘要: #include void main() { int x,a[100],i,k=0; scanf("%d",&x); for(i=0;x…… 题解列表 2019年07月31日 0 点赞 0 评论 644 浏览 评分:0.0
C二级辅导-进制转换-题解(C语言代码) 摘要: #include //编程,输入一个10进制正整数,然后输出它所对应的八进制数。 int main() { int num; …… 题解列表 2019年07月28日 0 点赞 0 评论 521 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o\n",n); return 0;}…… 题解列表 2019年05月10日 0 点赞 0 评论 506 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:正确运用转置符号注意事项:题目很简单,但不要把%x与%o搞混,前者是十六进制后者是八进制,c语言中没有%多少来表示二进制参考代码:#include"stdio.h"int main(){ …… 题解列表 2019年05月07日 0 点赞 0 评论 328 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n);}…… 题解列表 2019年04月25日 0 点赞 0 评论 308 浏览 评分:0.0
C二级辅导-进制转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; scanf("%d",&n); printf(…… 题解列表 2019年04月17日 0 点赞 0 评论 422 浏览 评分:0.0