题解列表

筛选

津津的储蓄计划

摘要:注意事项: 只有交给母亲的整钱才加20%,别忘了到最后可以还有余钱,没成整的 参考代码: ```c #include int main() { int a,k,sum=0; dou……

C语言递归简单易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>double f(double n){    if(n==1||n==0){        return 1;    }else{  ……

C语言思路简单,易懂!!!

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){    int a[10];    int min,min_i;      ……

有规律的数列求和

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { double m……