[编程入门]猴子吃桃的问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n,Sn=1,i; while(~scanf("%d…… 题解列表 2019年04月23日 0 点赞 0 评论 718 浏览 评分:0.0
[编程入门]自由下落的距离计算 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { double n,Sn=0; int m,i; while(~scanf("…… 题解列表 2019年04月23日 0 点赞 0 评论 1608 浏览 评分:0.0
[编程入门]有规律的数列求和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double Sn(int n) { double Sn=0,i,a=1,b=2,t; …… 题解列表 2019年04月23日 0 点赞 0 评论 1080 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int i; for(i=100;i<=999;i++) { int a,b,c…… 题解列表 2019年04月23日 0 点赞 0 评论 1322 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int i; for(i=100;i<=999;i++) { int a,b,c…… 题解列表 2019年04月23日 0 点赞 0 评论 1479 浏览 评分:0.0
[编程入门]求和训练 (C语言代码) 摘要:#include<stdio.h> #include <math.h> double Sn(double a,double b,double c) { double Sn,An=0,Bn=0…… 题解列表 2019年04月23日 0 点赞 0 评论 903 浏览 评分:0.0
[编程入门]Sn的公式求和 (C语言代码) 摘要:标准库函数#include <math.h>double pow(double x,double y):计算xy的值 参考代码:#include<stdio.h> #include <math.…… 题解列表 2019年04月23日 0 点赞 0 评论 793 浏览 评分:0.0
川哥的吩咐 (C语言代码)本着追大连交通大学的故事番,来简单解答一波!!! 摘要:解题思路:因为任何整形包括long long都不可能存储超过1000位的数字,所以,我们只能用字符数组一个数字一个数字的存储。 相加过程参考以前小学老师讲的,1,先从右到左对齐,…… 题解列表 2019年04月22日 0 点赞 0 评论 1327 浏览 评分:0.0
[编程入门]实数的打印 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.header>int m (){ float a; int i,j; scanf("%f",&a); for(i=1;i<=3;i++)…… 题解列表 2019年04月22日 0 点赞 0 评论 547 浏览 评分:0.0
[编程入门]数组插入处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.header>int m (){ int i,n,m,a[9],b[10];/*题目要求根据给定的数组求新数组,因此要定义两个数组*/ …… 题解列表 2019年04月22日 0 点赞 0 评论 1076 浏览 评分:0.0