题解列表

筛选

三位数分解 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, gewei, shiwei, baiwei; cin >……

贷款计算 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int zonge, time, repay = 0; float r……

(C语言代码)

摘要:#include<stdio.h> #include"malloc.h" typedef struct node {     int num;     struct node *next; ……