C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:注意事项:要注意,题中要的总路程,是最后一次落地时总路程,而不是最后一次落地并弹起的总路程!参考代码:#include<stdio.h> int main() { int i; fl…… 题解列表 2017年07月13日 0 点赞 0 评论 948 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.8 (C语言代码) 摘要:解题思路:主要是把数列的规律弄明白就能做了注意事项:注意分子分母变化时,需要一个介质,使其中一个的值不被丢掉参考代码:#include<stdio.h> int main() { float a…… 题解列表 2017年07月13日 0 点赞 0 评论 868 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n=0; int a=1; int b=2; int d; while(scanf("%d",&n)…… 题解列表 2017年07月13日 0 点赞 0 评论 964 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:无注意事项:无参考代码:#include<stio.h>int main(){it a,b,c;scanf("%d%d",&a,&b);c=a+b;printf("%d",c);return…… 题解列表 2017年07月13日 0 点赞 0 评论 856 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int x,a,b,c; for(x=100;x<=999;x++) { a=x/100; b=x%1…… 题解列表 2017年07月13日 0 点赞 0 评论 1234 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:弄明白 怎么循环 这一类的题就都迎刃而解了 注意事项:因为 要用到浮点型 索性 都定义成了浮点型 避免 乱掉和出错参考代码:#include<stdio.h> main() { flo…… 题解列表 2017年07月13日 0 点赞 0 评论 861 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int n, m; &nb 题解列表 2017年07月13日 24 点赞 0 评论 2823 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Aver(int[] ar…… 题解列表 2017年07月13日 0 点赞 0 评论 1329 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20][20]; int i,j; int n; scanf("%d",&n); for(i=1;i…… 题解列表 2017年07月13日 0 点赞 0 评论 885 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:注意事项:eclipse上运行无错,答案正确,但是在题目下运行显示运行错误所以本答案仅供参考参考代码:import java.util.HashSet;import java.util.It…… 题解列表 2017年07月13日 0 点赞 0 评论 1758 浏览 评分:9.9