此解可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 评论 1887 浏览 评分: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 评论 1102 浏览 评分: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 评论 1179 浏览 评分: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 评论 1456 浏览 评分:0.0
字符串内排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ char s[200],t; int i,…… 题解列表 2018年07月15日 1 点赞 0 评论 1572 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N, i, j, k; int num[500]; scanf("%d", &N); for (i = …… 题解列表 2018年07月16日 1 点赞 0 评论 732 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i, j, k, count = 1, max = 0, t; while (scanf("%d %d"…… 题解列表 2018年07月16日 1 点赞 0 评论 981 浏览 评分:0.0
此解可AC(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N, i, j, sum, k; int num[100][100]; while (scanf("%d…… 题解列表 2018年07月16日 1 点赞 0 评论 747 浏览 评分:0.0
此解可AC(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, sum; unsigned int N; while (scanf("%u", &N) != EO…… 题解列表 2018年07月16日 3 点赞 0 评论 1422 浏览 评分:0.0
蓝桥杯算法提高VIP-素数求和 (C语言代码) 摘要:解题思路:经计算,当输入n为2000000时,小于等于n的素数之和为142913828922,有12位,这明显大于无符号整型所能表示的最大数4294967295,所以保存和的变量或数组的数据类型只好定…… 题解列表 2018年07月16日 1 点赞 0 评论 2357 浏览 评分:0.0