C语言训练-求车速 (C语言代码) 摘要:解题思路:暴力破解,直接从1递归,判断其是否符合条件注意事项:参考代码:#include <stdio.h> long fun(long x) { long sum = 95859 + …… 题解列表 2019年05月08日 0 点赞 0 评论 837 浏览 评分:0.0
[编程入门]自定义函数之整数处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun2(int s1[10]){ int i; for(i=0;i<10;i++) scanf("%d",&s1[i]);}i…… 题解列表 2019年05月08日 0 点赞 0 评论 1064 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码)简单,水题、、、 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int x; int h,m,s; scanf("%d",&x); h=x/3600; m=(x-h*360…… 题解列表 2019年05月09日 0 点赞 0 评论 753 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码)简单!! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; char c; scanf("%d %d %c",&a,&b,&c); switch(c)…… 题解列表 2019年05月09日 0 点赞 0 评论 1021 浏览 评分:0.0
蓝桥杯算法提高VIP-剪刀石头布 (C语言代码)简单;;; 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>enum cai{shi,bu,jian};int main(){ enum cai cai1,cai2; int a,b; sca…… 题解列表 2019年05月09日 0 点赞 0 评论 1216 浏览 评分:0.0
蓝桥杯算法提高VIP-Quadratic Equation (C语言代码)水。。 摘要:解题思路:无注意事项:1,scanf()输入double 用%lf printf()输出double 用%f; 2,注意计算的运算顺序;参考代码:#include<stdio.h>#i…… 题解列表 2019年05月09日 0 点赞 0 评论 1078 浏览 评分:0.0
A+B for Input-Output Practice (V) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, x, s, m; scanf("%d", &n); for(int j = 0;…… 题解列表 2019年05月09日 0 点赞 0 评论 878 浏览 评分:0.0
A+B for Input-Output Practice (VI) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, s, x; while(scanf("%d", &n) != EOF) { …… 题解列表 2019年05月09日 0 点赞 0 评论 705 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码)不复杂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define n 100struct student{ char number[10]; char name[20]; int sco…… 题解列表 2019年05月09日 0 点赞 0 评论 1254 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct input{ char num[10]; char name[20]; int a,b,c;};int main(){ s…… 题解列表 2019年05月09日 0 点赞 0 评论 673 浏览 评分:0.0