C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ printf("**************************\nHello World!\n***************…… 题解列表 2017年08月19日 0 点赞 0 评论 1241 浏览 评分: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 评论 1445 浏览 评分: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 评论 1181 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:#include<stdio.h> int main() { int a=10 b=11 …… 题解列表 2017年08月20日 0 点赞 0 评论 1057 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:先输入,然后进行运算,最后输出。注意事项:输出格式不能错,整型用%d,字符型用%c,浮点型用%f。参考代码:#include"stdio.h"int main(){ char ch1,…… 题解列表 2017年08月20日 0 点赞 0 评论 1033 浏览 评分: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 评论 1090 浏览 评分: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 评论 1695 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] age){ …… 题解列表 2017年08月21日 0 点赞 0 评论 1458 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,&b,&c); if(a>b&&…… 题解列表 2017年08月21日 1 点赞 0 评论 1286 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:#include<stdio.h>int main(){ char a[100],b[100]; int i,j=0,n,m; scanf("%d",&n); for(i=0;i<n+1;i++)…… 题解列表 2017年08月21日 0 点赞 0 评论 1194 浏览 评分:0.0