此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int k){ int i; double sum = 1; for (i = 1; i <= k; i++) …… 题解列表 2018年07月16日 2 点赞 0 评论 826 浏览 评分:4.0
字符串内排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ char s[200],t; int i,…… 题解列表 2018年07月15日 1 点赞 0 评论 1230 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float grade; int a = 0, b = 0, c = 0; while (scanf("%f",…… 题解列表 2018年07月15日 1 点赞 0 评论 1265 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, c = 0, l = 0, max = 0; doub…… 题解列表 2018年07月15日 1 点赞 0 评论 1051 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){ int F; F = 32 + c * 9 / 5; return F;}int main(){ in…… 题解列表 2018年07月15日 1 点赞 0 评论 963 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x, y; scanf("%lf", &x); if (x < 0…… 题解列表 2018年07月15日 3 点赞 0 评论 2162 浏览 评分:6.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ int i = 0; double sum = 1; for (i = 1; i <= n; i…… 题解列表 2018年07月15日 1 点赞 0 评论 1618 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:根据数据规模和约定,学生总数不超过100,名字长度不超过30,定义学生表p[100][31],对应总分表s[100];首先,输入N个学生的姓名,第一行p[0]是"DaDa",对应的总分是s[…… 题解列表 2018年07月15日 1 点赞 0 评论 2191 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a[10], n; for (int i=0; i<9; i++) { scanf("%d", &…… 题解列表 2018年07月15日 0 点赞 0 评论 706 浏览 评分:0.0
蓝桥杯算法提高VIP-特殊的质数肋骨 (C语言代码) 摘要:解题思路:本想查表判断N位数的“每根肋骨”是否为质数,不料这里N的数目最大为8,如果建表需要至少200M内存,可以在本机上测试得到中间结果,代码不能提交。还有一种判断是否为质数的方法,就是对可能的因数…… 题解列表 2018年07月15日 2 点赞 1 评论 890 浏览 评分:6.0