题解列表

筛选

printf基础练习2 (C语言代码)

摘要:解题思路:输入一个整数,(此数大小如何限制不会),此数值赋于a,分别输出八进制,十进制,十六进制。注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <malloc.h>void destroy (int **p , int n);int main (void)……