作者:yunjinqi   类别:    日期:2023-06-04 19:25:39   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int m,n,q;     int t,c;     int t_arr[1000];     int c_arr[1000];     int m_count = 0;     in...
作者:yunjinqi   类别:    日期:2023-06-04 19:23:58   阅读:1 次   消耗积分:0 分
#include <stdio.h> #include <string.h> int str_divide_2(char c){     if (c=='0' || c=='2' || c=='4' || c=='6' || c=='8'){         return...
作者:yunjinqi   类别:    日期:2023-06-04 19:22:04   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int n,k,s;     int v1,v2;     int t_arr[291]={0};     int p_arr[291]={0};     int sum=0;     //...
作者:yunjinqi   类别:    日期:2023-06-04 19:20:35   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int arr[6];     int a,n,count;     // 获取第一行数据     for (int i=0;i<6;i++){         if (sc...
作者:yunjinqi   类别:    日期:2023-06-04 19:19:07   阅读:1 次   消耗积分:0 分
#include <stdio.h> long long factn(int n){     long long sum=1;     if (n<2){return 1;}     for (int i=2;i<=n;i++){         sum*=i;...
作者:yunjinqi   类别:    日期:2023-06-04 19:17:34   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int a,b,c,d;     if (scanf("%d %d %d %d",&a,&b,&c,&d)!=EOF){         // 两人一起进         if ...
作者:yunjinqi   类别:    日期:2023-06-04 19:15:07   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int n,v;     int days;     if (scanf("%d %d",&n,&v)!=EOF){         days = n/v;     }     p...
作者:yunjinqi   类别:    日期:2023-06-04 19:13:22   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("I'm gonna win! Today!\n");     printf("2022-04-23\n");     return 0; }...
作者:yunjinqi   类别:    日期:2023-06-04 19:11:43   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int a,b;     int result;     if (scanf("%d %d",&a,&b)!=EOF){         result = a+b-1;     }   ...
作者:yunjinqi   类别:    日期:2023-06-04 19:10:08   阅读:1 次   消耗积分:0 分
#include <stdio.h> int main(){     int n;     if (scanf("%d",&n)!=EOF){         printf("print(%d)",n);     }     return 0; }...
上一页   1   2   3   4   5   6   7   8   9   10   11   12   13   14   15   16   17   18   19   20   21   下一页