04 2022 档案

摘要:#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> void hanoi(int dishs, char p1, char p2, char p3) { if (dishs == 1) { printf("盘子从%c移动到%c\n", p1, p3) 阅读全文
posted @ 2022-04-02 11:09 小宁子xx 阅读(20) 评论(0) 推荐(0)