1680: 数据结构-八进制数 题解 摘要:```c #include #include typedef struct { int date[101]; int top; }stack;//栈 int isempt…… 题解列表 2024年08月07日 0 点赞 0 评论 438 浏览 评分:0.0
数据结构改进制 摘要:解题思路:注意事项:注意输入x的方式参考代码:#include<stdio.h>#include<iostream>#include<string.h>#include<stack>using nam…… 题解列表 2024年05月01日 0 点赞 0 评论 241 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) oct_num = oct(n) print(oct_…… 题解列表 2024年03月16日 0 点赞 0 评论 376 浏览 评分:0.0
数据结构-八进制数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<iostream>#include<algorithm>#include<string>#include<…… 题解列表 2018年10月22日 1 点赞 0 评论 1394 浏览 评分:0.0
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 评论 306 浏览 评分:0.0
简单1680题-数据结构-八进制数-题解(C语言代码) 摘要:```c #include #include #include int main() { long long num; while (scan…… 题解列表 2019年08月31日 0 点赞 0 评论 1160 浏览 评分:0.0
数据结构-八进制数[JAVA题解] 摘要: import java.util.Scanner; import java.util.Stack; public class Main { public static void m…… 题解列表 2023年03月05日 0 点赞 0 评论 281 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:直接循环输入输出。注意事项:while输入。参考代码:#include<bits/stdc++.h>using namespace std;int s;int main(){ whil…… 题解列表 2022年05月05日 0 点赞 0 评论 313 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { while(cin>>a) p…… 题解列表 2022年04月30日 0 点赞 0 评论 323 浏览 评分:0.0
数据结构-八进制数 (C++代码) 摘要:解题思路:模拟进制转换过程即可注意事项:正序存,倒序输出参考代码:#include <iostream> using namespace std; int main() { int a[10…… 题解列表 2019年02月10日 0 点赞 0 评论 1054 浏览 评分:0.0