[编程入门]迭代法求平方根 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int X; double X2=0,X1=0; sca…… 题解列表 2019年04月22日 0 点赞 0 评论 660 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.header>int m (){ int m,n,a,b,i; scanf("%d %d",&m,&n); if(m<n)/*选择结构判…… 题解列表 2019年04月22日 0 点赞 0 评论 665 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int k,i; while(scanf("%s"…… 题解列表 2019年04月22日 0 点赞 0 评论 617 浏览 评分:0.0
[编程入门]数组插入处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.header>int m (){ int i,n,m,a[9],b[10];/*题目要求根据给定的数组求新数组,因此要定义两个数组*/ …… 题解列表 2019年04月22日 0 点赞 0 评论 875 浏览 评分: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 评论 475 浏览 评分:0.0
川哥的吩咐 (C语言代码)本着追大连交通大学的故事番,来简单解答一波!!! 摘要:解题思路:因为任何整形包括long long都不可能存储超过1000位的数字,所以,我们只能用字符数组一个数字一个数字的存储。 相加过程参考以前小学老师讲的,1,先从右到左对齐,…… 题解列表 2019年04月22日 0 点赞 0 评论 1174 浏览 评分:0.0
[编程入门]Sn的公式求和 (C语言代码) 摘要:标准库函数#include <math.h>double pow(double x,double y):计算xy的值 参考代码:#include<stdio.h> #include <math.…… 题解列表 2019年04月23日 0 点赞 0 评论 681 浏览 评分: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 评论 721 浏览 评分: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 评论 1089 浏览 评分: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 评论 897 浏览 评分:0.0