十-八进制转换(动态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct{ int *data…… 题解列表 2025年02月16日 0 点赞 0 评论 27 浏览 评分:0.0
十-八进制转换(静态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define maxsize 100typedef struct{&nbs…… 题解列表 2025年02月16日 0 点赞 0 评论 33 浏览 评分:0.0
十进制转八进制数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct{ int data[100]; int top;}Lnod…… 题解列表 2024年11月25日 0 点赞 0 评论 115 浏览 评分:9.9
数据结构用栈实现进制转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h>#define MAXSIZE 100typedef struct{ int data[MAXS…… 题解列表 2024年11月07日 0 点赞 0 评论 71 浏览 评分:0.0
1680: 数据结构-八进制数 题解 摘要:```c #include #include typedef struct { int date[101]; int top; }stack;//栈 int isempt…… 题解列表 2024年08月07日 0 点赞 0 评论 112 浏览 评分:0.0
数据结构改进制 摘要:解题思路:注意事项:注意输入x的方式参考代码:#include<stdio.h>#include<iostream>#include<string.h>#include<stack>using nam…… 题解列表 2024年05月01日 0 点赞 0 评论 73 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) oct_num = oct(n) print(oct_…… 题解列表 2024年03月16日 0 点赞 0 评论 129 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 (谁的代码有我短,为了通过) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; while (scanf ("%d",&n)!=EOF){ prin…… 题解列表 2023年10月09日 0 点赞 0 评论 333 浏览 评分:9.9
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int sum=0; int n,a[100],i=0,k=1,l=0; while (s…… 题解列表 2023年10月09日 1 点赞 0 评论 133 浏览 评分:0.0
C语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct linkednode{ int data; struct …… 题解列表 2023年09月13日 0 点赞 0 评论 88 浏览 评分:0.0