C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 摘要:解题思路:注意事项:这样写应该不难理解参考代码:/* 3555555555555 */ #include<stdio.h> void handle(int *arr,char *ch) { …… 题解列表 2017年10月28日 1 点赞 0 评论 1095 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 3444444 */ #include<stdio.h> void handle(char *ch) { int i; for(i =…… 题解列表 2017年10月28日 2 点赞 0 评论 1070 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:so easy注意事项:参考代码:#include<stdio.h>int main(){ int x;char a; scanf("%d",&x); if(x<60) a…… 题解列表 2017年10月28日 0 点赞 0 评论 856 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 33333 */ #include<stdio.h> void handle(char *ch,char *chr) { int i,j; …… 题解列表 2017年10月28日 2 点赞 0 评论 1129 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:就这样吧注意事项:参考代码:#include"stdio.h"int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a<b…… 题解列表 2017年10月28日 0 点赞 0 评论 785 浏览 评分:0.0
JAM计数法 (C语言代码) 摘要:#include <stdio.h> //虽然没人看 int main() { char lower[27]={"abcdefghijklmnopqrstuvwxyz"},first[3…… 题解列表 2017年10月28日 1 点赞 0 评论 1075 浏览 评分:0.0
printf基础练习 (C语言代码) 摘要:解题思路:1.首先确定8,16进制在C语言中的表示符号:%o,%x。 2.确定正常情况下如何表示8,16进制:0+数字;0x+数字。 3.所以在编写时就有:printf("0%o 0x…… 题解列表 2017年10月28日 3 点赞 1 评论 2488 浏览 评分:7.3
简单的a+b (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdib.h>{ int a=100,b=50; system ("pause"); puts("y=a+b%d/n,a,…… 题解列表 2017年10月28日 0 点赞 0 评论 713 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int fangxu(char *a,char *b){ int i=0,l,j; l=strl…… 题解列表 2017年10月28日 0 点赞 0 评论 880 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int zhuanzhi(int *a, int m, int n){ int sa[m][n]; int i, j; for (i …… 题解列表 2017年10月27日 0 点赞 0 评论 898 浏览 评分:0.0