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 评论 732 浏览 评分:0.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 评论 1733 浏览 评分: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 评论 1017 浏览 评分: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 评论 1106 浏览 评分: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 评论 1345 浏览 评分:0.0
字符串内排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ char s[200],t; int i,…… 题解列表 2018年07月15日 1 点赞 0 评论 1320 浏览 评分: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 评论 677 浏览 评分: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 评论 911 浏览 评分: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 评论 687 浏览 评分:0.0
此解可AC(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, sum; unsigned int N; while (scanf("%u", &N) != EO…… 题解列表 2018年07月16日 3 点赞 0 评论 1327 浏览 评分:0.0