作者:yunjinqi   类别:    日期:2023-05-29 17:28:09   阅读:106 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){     double x;     double sum = 1.0;     double term = 1.0;     int k = 1;     i...
作者:yunjinqi   类别:    日期:2023-05-29 17:24:43   阅读:103 次   消耗积分:0 分
#include <stdio.h> #include <math.h> double cal_e(int n){     double sum=1.0, term = 1.0;     int i;     for (i=1; i<=n; i++){      ...
作者:yunjinqi   类别:    日期:2023-05-29 17:21:29   阅读:104 次   消耗积分:0 分
#include <stdio.h> int main(){     double eps;     double r;     int i,s=1;     double sum=0;     if (scanf("%lf",&eps)!=EOF){     ...
作者:yunjinqi   类别:    日期:2023-05-29 16:57:16   阅读:108 次   消耗积分:0 分
#include <stdio.h> int main(){     int count=0;     int n=0;     double prices[5] = {0,3.00,2.50,4.10,10.20};     char names[][7] = {"e...
作者:yunjinqi   类别:    日期:2023-05-29 16:53:52   阅读:88 次   消耗积分:0 分
#include <stdio.h> long fact(int n){     long r=1;     int i;     for (i=1;i<=n;i++){         r*=i;     }     return r; } int ...
作者:yunjinqi   类别:    日期:2023-05-29 16:50:45   阅读:104 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){     int N;     int i;     long s;     if (scanf("%d",&N)!=EOF){         for (i=0...
作者:yunjinqi   类别:    日期:2023-05-29 16:48:46   阅读:104 次   消耗积分:0 分
#include <stdio.h> int main(){     int N;     double sum=0.0;     int i;     int s=1;     if (scanf("%d",&N)!=EOF){         fo...
作者:yunjinqi   类别:    日期:2023-05-29 16:46:20   阅读:114 次   消耗积分:0 分
#include <stdio.h> int main(){     int N;     double sum=0.0;     int i;     if (scanf("%d",&N)!=EOF){         for (i=0;i<N;i++){ ...
作者:yunjinqi   类别:    日期:2023-05-29 16:16:23   阅读:99 次   消耗积分:0 分
#include <stdio.h> int main() {     int lower, upper;     if (scanf("%d %d", &lower, &upper) != 2 || lower > upper || upper > 100) { ...
作者:yunjinqi   类别:    日期:2023-05-29 16:13:39   阅读:101 次   消耗积分:0 分
#include <stdio.h> #include <stdlib.h> #include <string.h> int is_same_digits(int *arr1, int *arr2) {     int arr_d_1[10]={0};     int arr_d_2[...
上一页   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   下一页