C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:通过if语句划分出不同的利润层次,(“%.f")来限制小数位。注意事项:因为有小数的乘法因此不能用int型参考代码:#include <stdio.h>#define MIN 100000i…… 题解列表 2019年01月06日 0 点赞 0 评论 585 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=100000){ b=a*0.1; } els…… 题解列表 2018年12月21日 0 点赞 0 评论 322 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C++代码) 摘要:解题思路:本题完全围绕一个数学轴展开!注意事项: 本题开始放入到C语言进行编译,发现编译不通过,但放入到c++里面通过了,原因是强制类型转换int( )是c++里面的,在c语言里面的是(int)…… 题解列表 2018年12月15日 7 点赞 0 评论 793 浏览 评分:5.5
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(void) { int profit, reward; scanf("%d", &profit); …… 题解列表 2018年11月20日 0 点赞 0 评论 436 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路: 用if语句一个一个判断!!注意事项: 注意要输出什么数输入什么数!!参考代码:#include<stdio.h>int main(){ int I; int b,c; sca…… 题解列表 2018年11月19日 1 点赞 0 评论 494 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:一定分清数额,采用if语句比较简单注意事项:不要省略return 0;参考代码:#include<stdio.h>int main(){ int I,y; scanf("%d",…… 题解列表 2018年11月08日 1 点赞 0 评论 309 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)最好理解的 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(void) { int n, sum = 0; scanf("%d", &n); if(n <…… 题解列表 2018年10月29日 0 点赞 0 评论 394 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int k; double m,p,q,s,r,t; int i=1; //printf("请输入当月利润…… 题解列表 2018年10月26日 0 点赞 0 评论 266 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:按照题目中要求的数据分步计算,多次用到else if的判断注意事项:等号的顺序参考代码:#include<stdio.h>int main(){ int i; int bouns…… 题解列表 2018年10月16日 1 点赞 0 评论 721 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.8 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.io.*; import java.math.*; public class Main { pu…… 题解列表 2018年10月13日 0 点赞 0 评论 524 浏览 评分:0.0