c++十进制转八进制(栈的用法)
摘要:
#include<iostream> #include<stack> using namespace std; int main() { int n; stack<int>stac; cout << "请输入一个数字:" << endl; cin >> n; while (n!=0) { //每次求 阅读全文
posted @ 2022-05-11 17:20 zdlzc 阅读(492) 评论(0) 推荐(0) 编辑