作者:yunjinqi   类别:    日期:2023-05-30 15:14:39   阅读:103 次   消耗积分: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-30 15:11:34   阅读:112 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("What is a computer?");     return 0; }这又是一个极其简单的输出题目,没什么特别的难度。...
作者:yunjinqi   类别:    日期:2023-05-29 21:56:04   阅读:109 次   消耗积分:0 分
#include <stdio.h> int main(){     int n;     int hour,minute,second;     int new_hour,new_minute,new_second;     if (scanf("%d:%d:%d",&hou...
作者:yunjinqi   类别:    日期:2023-05-29 21:53:13   阅读:103 次   消耗积分:0 分
#include <stdio.h> int main() {     char c;     while (scanf("%c", &c) == 1 && c != '\n') {         if (c >= 'A' && c <= 'Z')...
作者:yunjinqi   类别:    日期:2023-05-29 21:50:57   阅读:103 次   消耗积分:0 分
#include <stdio.h> int main(){     char consonant[21]={'B','C','D','F','G','H','J','K','L','M','N','P','Q','R','S','T','V','W','X','Y','Z'};     char ...
作者:yunjinqi   类别:    日期:2023-05-29 21:40:53   阅读:96 次   消耗积分:0 分
#include<stdio.h> int main(){     int n,h0;     double h;     double s;     int i;     scanf("%d %d",&h0,&n);     h=(double)h0;   ...
作者:yunjinqi   类别:    日期:2023-05-29 21:37:53   阅读:112 次   消耗积分:0 分
#include <stdio.h> int main(){     double height = 0.5*10*3*3;     printf("height = %.2f",height);     return 0; }...
作者:yunjinqi   类别:    日期:2023-05-29 21:34:03   阅读:105 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("Programming in C is fun!");     return 0; }这真是一个特别简单的题目,特别简单。...
作者:yunjinqi   类别:    日期:2023-05-29 17:33:46   阅读:98 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("Welcome to You!");     return 0; }这是一个特别简单的题目,后续还有一些简单输出信息的。凑字数。...
作者:yunjinqi   类别:    日期:2023-05-29 17:30:57   阅读:102 次   消耗积分:0 分
#include <stdio.h> #include <math.h> int main() {     int n;     if (scanf("%d", &n) != 1 || n <= 0 || n % 2 == 0) {         ...
上一页   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   下一页