C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int profit; float bonus; scanf("%d…… 题解列表 2017年09月12日 0 点赞 0 评论 838 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,t; scanf("%d",&a); switch(a/1000000) { case 0:t…… 题解列表 2017年10月05日 2 点赞 1 评论 751 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:纯粹数学问题注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=100000) …… 题解列表 2017年10月18日 0 点赞 0 评论 1567 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:常规注意事项:无参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x<=100000) { prin…… 题解列表 2017年10月26日 0 点赞 0 评论 897 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,bouns; scanf("%d",&i); switch(i/100000) …… 题解列表 2017年11月17日 0 点赞 0 评论 840 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int I; int sum=0; scanf("%d",&I); switch(I/1…… 题解列表 2017年12月05日 0 点赞 0 评论 537 浏览 评分:0.0
编写题解 1010:琪露诺的编程教室 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <iomanip>using namespace std;int main()…… 题解列表 2017年12月14日 0 点赞 0 评论 895 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<math.h> int main() { double l=0,n=0; scanf("%lf",&l…… 题解列表 2018年04月10日 26 点赞 4 评论 1685 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{public static void main(String[] args) { int a; …… 题解列表 2018年01月06日 1 点赞 0 评论 801 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:我们可一把这一个题目看成是数学里面的分段函数,然后就好做了。注意事项:1、这道题我们要想到利润跟奖金可能会有小数的情况出现,所以我在定义时用的浮点型。2、看范例的输出时只有一个90,所以我在…… 题解列表 2018年01月18日 0 点赞 0 评论 813 浏览 评分:0.0