题解列表

筛选

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char a[150];    int i,n,m;    scanf("%d",&n);    scan……

1119简单if循环

摘要:解题思路:把数学公式理解就好了注意事项:参考代码:#include<stdio.h>#include<math.h>#define P(x) pow(x,3)int main(){ int a,b,c……

简易,易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b,c;    for (int i=100; i<1……

c语言代码详细

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b,c,n;    scanf ("%d",&n); ……

c语言代码详细

摘要:解题思路:注意事项:参考代码:int main (){    int a,b,c,d;    scanf ("%d",&d);    a=d/100;    b=d/10%10;    c=d%10;……

c语言代码详细

摘要:解题思路:注意事项:参考代码:int fun (int n){    if(n<=4)    return n;   else     return  fun(n-1)+fun(n-3);}int m……

新手等差数列末项计算

摘要:解题思路:通过首项和第二项的差算出公差,代入等差数列公式即可注意事项:a为首项,b为第二项,n为第n项,s为等差数列计算结果参考代码#include<stdio.h>int main(){    in……

新手 晶晶赴会

摘要:解题思路:简单判断邀约的星期是否为偶数注意事项:参考代码#include<stdio.h>int main(){    int a;    scanf("%d",&a);    if(a%2==0) ……

不懂可评论

摘要:解题思路:注意事项:参考代码:class Date:     def __init__(self):         self.__year = 0         self.__mon……

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; class Date {     private String year,month,day;     pub……