作者:yunjinqi   类别:    日期:2023-05-29 13:50:19   阅读:386 次   消耗积分:0 分
#include <stdio.h> int sum_number(int i){     int my_sum=0;     int num=i;     while (num>9){         //printf("sum_number:%d\n",num); ...
作者:yunjinqi   类别:    日期:2023-05-29 13:47:42   阅读:384 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){     char my_string[][5] = {"ling","yi","er","san","si","wu","liu","qi","ba","jiu",};     // int ...
作者:yunjinqi   类别:    日期:2023-05-29 13:44:57   阅读:375 次   消耗积分:0 分
#include <stdio.h> double fv(double a3,double a2,double a1,double a0,double x){     double value = a3*x*x*x + a2*x*x + a1*x + a0;     ret...
作者:yunjinqi   类别:    日期:2023-05-29 13:37:23   阅读:360 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){     int N,sum_value=0,num=0;     if (scanf("%d",&N)!=0 && N<=pow(10,9)){         while (...
作者:yunjinqi   类别:    日期:2023-05-29 13:35:05   阅读:374 次   消耗积分:0 分
#include <stdio.h> int Fibon1(int n){ if (n == 1 || n == 2){ return 1; } else{ return Fibon1(n - 1) + Fibon1(n - 2); } } int main(){     i...
作者:yunjinqi   类别:    日期:2023-05-29 13:30:58   阅读:375 次   消耗积分:0 分
#include <stdio.h> int main(){     int a,b,c=1,d=1,i=1;     if (scanf("%d %d",&a,&b)!=0){         while (d==1){             if ...
作者:yunjinqi   类别:    日期:2023-05-29 13:27:47   阅读:385 次   消耗积分:0 分
#include <stdio.h> int main(){     int my_sum=0;     int num;     while (scanf("%d",&num)!=0 && num>0){         if (num%2==1){my_sum+...
作者:yunjinqi   类别:    日期:2023-05-29 13:24:35   阅读:366 次   消耗积分:0 分
#include <stdio.h> int main(){     int target_num,total_trial,count=0;     int my_guess;     if (scanf("%d %d",&target_num,&total_trial)!=0){  ...
作者:yunjinqi   类别:    日期:2023-05-29 13:21:43   阅读:375 次   消耗积分:0 分
#include <stdio.h> int main(){     float amount;     float result;     if (scanf("%f",&amount)!=0){         if (amount>15.0){      ...
作者:yunjinqi   类别:    日期:2023-05-29 13:18:37   阅读:351 次   消耗积分:0 分
#include <stdio.h> struct ball{     char *name;     int value; }; char compare_balls(struct ball b1,struct ball b2,struct ball b3){     //...
上一页   1   2   3   4   5   6   7   8   9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   36   37   38   39   下一页