摘要: int change(int x, int ch){ int tmp = x; int bit[10] = {0}; char everybit[5] = {'A', 'B', 'C', 'D', 'E'}; int count = 0; while(tmp != 0) // 辗转相除法求对应进制 阅读全文
posted @ 2020-06-28 19:11 嘻嘻嘻ziixi 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>#include <stdbool.h>#include <iostream>#include <algorithm>using namespace std;#define N 300st 阅读全文
posted @ 2020-06-28 14:51 嘻嘻嘻ziixi 阅读(125) 评论(0) 推荐(0) 编辑