作者:yunjinqi   类别:    日期:2023-05-31 10:11:48   阅读:113 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){     double r;     double x1;     if (scanf("%lf",&x1)!=EOF){         if (x1>=0.0){r=p...
作者:yunjinqi   类别:    日期:2023-05-31 10:09:38   阅读:114 次   消耗积分:0 分
#include <stdio.h> int main(){     double r;     double x1;     if (scanf("%lf",&x1)!=EOF){         if (x1==0.0){r=0.0;}        ...
作者:yunjinqi   类别:    日期:2023-05-31 10:07:10   阅读:120 次   消耗积分:0 分
#include <stdio.h> int main(){     int a,b;     if (scanf("%d %d",&a,&b)!=EOF){         printf("%d + %d = %d\n",a,b,a+b);        ...
作者:yunjinqi   类别:    日期:2023-05-31 10:04:30   阅读:107 次   消耗积分:0 分
#include <stdio.h> int main(){     int fahr = 150;     double celsius = 5.0*(fahr-32)/9;     printf("fahr = 150, celsius = %d",(int)cels...
作者:yunjinqi   类别:    日期:2023-05-31 10:01:58   阅读:108 次   消耗积分:0 分
#include<stdio.h> #include<math.h> int main() { int N; int maxString = 0; int count = 0; int num = 0; int firstNum = 0; if (scanf("%d",&N)!=EOF){ ...
作者:yunjinqi   类别:    日期:2023-05-31 10:00:29   阅读:105 次   消耗积分:0 分
#include<stdio.h> #include<string.h>   int main() { char price[10]; if (scanf("%s", price)!=EOF){         int cnt = strlen(price); // 字符串长度...
作者:yunjinqi   类别:    日期:2023-05-31 09:56:27   阅读:118 次   消耗积分:0 分
#include <stdio.h> int main(){     int N,i,j;     char s ;     int num_s;     if (scanf("%d %c",&N,&s)!=EOF && N<=1000){        ...
作者:yunjinqi   类别:    日期:2023-05-31 09:52:38   阅读:110 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("2018\n");     printf("wo3 men2 yao4 ying2 !"); }代码来自:https://yunjinqi.top/article/206...
作者:yunjinqi   类别:    日期:2023-05-30 16:12:46   阅读:121 次   消耗积分:0 分
#include <stdio.h> int main(){     int price,discount;     double money;     if (scanf("%d %d",&price,&discount)!=EOF){         money ...
作者:yunjinqi   类别:    日期:2023-05-30 16:09:50   阅读:114 次   消耗积分:0 分
#include<stdio.h>   int gcd(int a,int b); // 辗转相除法返回最大公因数(输入存在为0则返回非0的输入,都为0则返回1)    int main() { int N; int i; int u...
上一页   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   下一页