琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a[3],i,t,j,k; for(i=0;i<3;i++)…… 题解列表 2017年12月23日 0 点赞 0 评论 829 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int wmw1(int a[]){ int i; for(i=0;i<10;i++) { …… 题解列表 2017年12月23日 0 点赞 0 评论 1112 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int wmw(char a[],char b[]){ int i,n,m; cin>>n;…… 题解列表 2017年12月23日 0 点赞 0 评论 783 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int wmw(int a[]){ int n,i,m; cin>>n; for(i=0;i…… 题解列表 2017年12月23日 0 点赞 0 评论 748 浏览 评分:0.0
C语言训练-列出最简真分数序列* (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a=1,b=3,c=7,d=9; printf("%d/40,%d/40,%d/40,%d/…… 题解列表 2017年12月23日 0 点赞 0 评论 743 浏览 评分:0.0
优质题解 Manchester- C语言训练-计算t=1+1/2+1/3+...+1/n 摘要:解题思路:令i从1到N;把所有 1/i 的商加起来;输出和,保留六位小数;注意事项:把变量范围定义得大一些,避免出错;参考代码:#include <stdio.h> int main() { …… 题解列表 2017年12月23日 16 点赞 12 评论 4888 浏览 评分:7.5
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:利用数组的下标来找规律 然后用if语句实现最终求和注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3] = { 0 }; int i, j; …… 题解列表 2017年12月23日 0 点赞 0 评论 850 浏览 评分:0.0
优质题解 Manchester- C语言训练-计算一个整数N的阶乘(多方法回合) 摘要:解题思路:思路1.根据公式n!=1*2*3*...n;#include <stdio.h> int main() { int n,jc=1; scanf("%d",&n); for(…… 题解列表 2017年12月23日 18 点赞 8 评论 3905 浏览 评分:9.2
Manchester-C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) 摘要:解题思路:把1150 题的加法换为减法,分母换为i的平方;#include <stdio.h> int main() { double t = 1; int m…… 题解列表 2017年12月23日 16 点赞 0 评论 1562 浏览 评分:9.0
蓝桥杯算法提高VIP-格式化数据输出 (C++代码) 摘要:注意事项:注意"---------------------------------------------------"一定是和"COUNTRY AREA(10K km2) POP.(10K…… 题解列表 2017年12月23日 1 点赞 3 评论 1768 浏览 评分:9.9