2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int i,j,hang=0,lie=0,n; scanf("%d",&n); double m[n][n];…… 题解列表 2019年02月14日 1 点赞 0 评论 1217 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a[100],k; for(i=1;i<=10;i++)scanf("%d",&a[i]); f…… 题解列表 2019年02月14日 0 点赞 0 评论 694 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出 (C语言代码) 摘要://出题的人表达不清晰,题目意思是:最后要把绝对值最大的数的绝对值和下标输出//一定要变成绝对值的形式,如果是原形就出错了 #include<stdio.h>#include<math.h>int m…… 题解列表 2019年02月14日 0 点赞 0 评论 938 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int i,m,n; scanf("%s %s",a,b); m=…… 题解列表 2019年02月14日 0 点赞 0 评论 979 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 (C语言代码) 摘要:#include<stdio.h>struct A{ int shibu; int xubu; struct A *p;};int main(){ int n,i,shi=0,xu=0; scanf(…… 题解列表 2019年02月14日 0 点赞 0 评论 1012 浏览 评分:0.0
求圆的面积 (C语言代码) 摘要:解题思路:圆的面积S=π×(r^2注意事项:π参考代码:#include <stdio.h>int main(){ double a,s; double c=3.1415; scanf("…… 题解列表 2019年02月14日 0 点赞 0 评论 725 浏览 评分:0.0
P1006 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,i,k; long sum; char IP[100]; get…… 题解列表 2019年02月14日 0 点赞 0 评论 1451 浏览 评分:9.9
最小重量机器设计问题 (C++代码)递归解决,题目描述有误 摘要:解题思路:注意事项:题目里的输入说第一行有 3 个正整数 n ,m和 d。接下来的 2n 行,每 行m个数。前n行是c,后n行是w。应该改为:一行有 3 个正整数 n ,m和 d。接下来的 2n 行,…… 题解列表 2019年02月14日 1 点赞 1 评论 1126 浏览 评分:9.9
【回文数(二)】 (C语言代码) 摘要:解题思路:在while(1)大循环中,没有结果不出来注意事项:数组要赋初值参考代码:#include "iostream" using namespace std; #define MAXSIZE…… 题解列表 2019年02月14日 0 点赞 0 评论 1827 浏览 评分:0.0
小明A+B (C++代码)水啊! 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string str1,str2; int n; cin>…… 题解列表 2019年02月14日 0 点赞 0 评论 1380 浏览 评分:0.0