C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题基础:scanf("输入模式",地址列表);//输入语句及其格式。注:地址列表一定要加取地址符号&,如:&a,&bprintf("输出模式",输出列表);//输出语句及其格式。注:输出模式和输出列…… 题解列表 2017年06月10日 46 点赞 79 评论 16428 浏览 评分:8.5
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; scanf("%d",&a); if (a<=100000) b=a*0.1; …… 题解列表 2017年06月30日 0 点赞 0 评论 944 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:#include<stdio.h> int main(void) { int n; int money; scanf("%d",&n); if(n<=100000) money=n/10…… 题解列表 2017年07月02日 5 点赞 2 评论 976 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (Java代码) 摘要:import java.util.Scanner;public class Main { public static int wage(int a){ …… 题解列表 2017年07月04日 5 点赞 0 评论 1456 浏览 评分:4.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:import java.util.Scanner;public class Main { public static int wage(int a){ if…… 题解列表 2017年07月04日 0 点赞 0 评论 901 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,t; scanf("%d",&a); switch(a/100000){ case 0: …… 题解列表 2017年07月04日 0 点赞 0 评论 724 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x,s; scanf("%d",&x); if(x>0 && x<=100000) { …… 题解列表 2017年07月12日 0 点赞 0 评论 783 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:简单的if和else解决方案注意事项: 利润太大的时候 有些编译器 int型不能读取这么大的数字参考代码:#include"stdio.h"int main(){ long I; …… 题解列表 2017年07月18日 0 点赞 0 评论 846 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ long long m; scanf("%lld",&m); if(m<=100000) …… 题解列表 2017年07月27日 1 点赞 0 评论 778 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:主要看公式注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int t; scanf…… 题解列表 2017年08月05日 0 点赞 0 评论 842 浏览 评分:0.0