WU-C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:#include<stdio.h> int main() { int profit; int bonus; scanf("%d",&profit); switch(profi…… 题解列表 2017年12月25日 2 点赞 0 评论 1403 浏览 评分:9.3
编写题解 1010:琪露诺的编程教室 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <iomanip>using namespace std;int main()…… 题解列表 2017年12月14日 0 点赞 0 评论 767 浏览 评分: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 评论 468 浏览 评分: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 评论 749 浏览 评分: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 评论 822 浏览 评分: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 评论 1472 浏览 评分: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 评论 722 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int profit; float bonus; scanf("%d…… 题解列表 2017年09月12日 0 点赞 0 评论 746 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:参考代码: #include <stdio.h>int main(){ int x,s; scanf("%d",&x); float a,t; a=(float)(x); x=x/100…… 题解列表 2017年08月25日 1 点赞 0 评论 909 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*企业发放的奖金根据利润提成。利润低于或等于100000元的,奖金可提10%;利润高于100000元,低于200000元(100000<I≤200000)时,低于100…… 题解列表 2017年08月19日 1 点赞 0 评论 1095 浏览 评分:0.0