多组输入年月日求和(第几天) 摘要:解题思路:一年中的第几天,月份加天数就行;闰年的判断(YYYY%400==0||(YYYY%4==0&&YYYY%100!=0))参考代码:#include<stdio.h>int main(){ i…… 题解列表 2021年07月19日 0 点赞 0 评论 828 浏览 评分:9.9
多组输入~~~ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double n; while(scanf("%lf",&n)!=EOF) pr…… 题解列表 2021年07月19日 0 点赞 0 评论 895 浏览 评分:9.9
大爷子!慢点敲,等等我。。。 摘要:解题思路:比较6次就好了,,,注意事项:参考代码:#include<cstdio>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a…… 题解列表 2021年07月19日 0 点赞 0 评论 461 浏览 评分:0.0
结构体之成绩记录(参考置顶,仅作记录) 摘要:#include<stdio.h> #include<mm_malloc.h> typedef struct student_info { char s_id[16]; …… 题解列表 2021年07月19日 0 点赞 0 评论 507 浏览 评分:0.0
1010:超简单的小学数学利润计算问题(错误率高达80%,注意审题) 摘要:解题思路:先输入一个数字,然后通过这个数字的范围来决定这个数字的利润最终提成,最后输出利润提成注意事项:题目有很多字,注意审题,如果还不懂可以去编译器练习增加理解参考代码:#include <stdi…… 题解列表 2021年07月19日 0 点赞 1 评论 367 浏览 评分:6.0
[编程入门]选择排序 c语言 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int i,t,j,n; int array[10]; for(n=0;n<10;n++){ …… 题解列表 2021年07月19日 0 点赞 0 评论 329 浏览 评分:4.0
这是杖举吗? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum play {a=-1,b,c}; int p1,p2,x; scanf("%d%d…… 题解列表 2021年07月19日 0 点赞 0 评论 540 浏览 评分:9.9
宝,我今天用switch了 摘要:解题思路:注意事项:1.符号的定义就是%c而不是%d!!!2.输入%d和%c之间要有空格哦!!!3.%c对应的是单个字符 %s对应的是字符串参考代码:#include<stdio.h>int main…… 题解列表 2021年07月19日 0 点赞 3 评论 742 浏览 评分:9.9
sinez之吻----------------------------------- 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int count = 1;int A(int n) { if (count == n ) { printf("sin(%d", …… 题解列表 2021年07月18日 0 点赞 0 评论 663 浏览 评分:9.9