作者:yunjinqi 类别:
日期:2023-05-30 15:11:34 阅读:12 次 消耗积分:0 分
#include <stdio.h> int main(){ printf("What is a computer?"); return 0; }这又是一个极其简单的输出题目,没什么特别的难度。...
作者:yunjinqi 类别:
日期:2023-05-29 21:56:04 阅读:14 次 消耗积分: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 阅读:9 次 消耗积分: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 阅读:9 次 消耗积分: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 阅读:10 次 消耗积分: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 阅读:9 次 消耗积分: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 阅读:9 次 消耗积分:0 分
#include <stdio.h> int main(){ printf("Programming in C is fun!"); return 0; }这真是一个特别简单的题目,特别简单。...
作者:yunjinqi 类别:
日期:2023-05-29 17:33:46 阅读:10 次 消耗积分:0 分
#include <stdio.h> int main(){ printf("Welcome to You!"); return 0; }这是一个特别简单的题目,后续还有一些简单输出信息的。凑字数。...
作者:yunjinqi 类别:
日期:2023-05-29 17:30:57 阅读:11 次 消耗积分:0 分
#include <stdio.h> #include <math.h> int main() { int n; if (scanf("%d", &n) != 1 || n <= 0 || n % 2 == 0) { ...
作者:yunjinqi 类别:
日期:2023-05-29 17:28:09 阅读:11 次 消耗积分:0 分
#include <stdio.h> #include <math.h> int main(){ double x; double sum = 1.0; double term = 1.0; int k = 1; i...