C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*企业发放的奖金根据利润提成。利润低于或等于100000元的,奖金可提10%;利润高于100000元,低于200000元(100000<I≤200000)时,低于100…… 题解列表 2017年08月19日 1 点赞 0 评论 1768 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){printf("**************************\n");printf("Hello Worl…… 题解列表 2017年08月19日 0 点赞 0 评论 1107 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ printf("**************************\nHello World!\n***************…… 题解列表 2017年08月19日 0 点赞 0 评论 1118 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n; scanf("%d %d",&a,&b); if(a>=b) { n=b; …… 题解列表 2017年08月19日 1 点赞 0 评论 1340 浏览 评分:0.0
大神老白 (C语言代码) 摘要:#include <stdio.h>#include <math.h>int sum(int a){ int s=0; int b; while(a--){ scanf("%…… 题解列表 2017年08月19日 0 点赞 0 评论 1100 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:#include<stdio.h> int main() { int a=10 b=11 …… 题解列表 2017年08月20日 0 点赞 0 评论 990 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:先输入,然后进行运算,最后输出。注意事项:输出格式不能错,整型用%d,字符型用%c,浮点型用%f。参考代码:#include"stdio.h"int main(){ char ch1,…… 题解列表 2017年08月20日 0 点赞 0 评论 989 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); if(a>b)max=a…… 题解列表 2017年08月20日 0 点赞 0 评论 1012 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:#include<stdio.h>struct shuju{ char gaibian[100]; char bubian[100];}; int main(){ int w=1,q,n; st…… 题解列表 2017年08月21日 0 点赞 0 评论 1582 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] age){ …… 题解列表 2017年08月21日 0 点赞 0 评论 1358 浏览 评分:0.0