小O的图案 (C语言代码) 摘要:#include <stdio.h> #include <string.h> void main() { int n,i,o,last,count; char nums[210][210…… 题解列表 2017年10月28日 1 点赞 0 评论 1641 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:哈哈哈注意事项:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); printf("5\n1 2 3 4 5\n54…… 题解列表 2017年10月28日 0 点赞 0 评论 1120 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 摘要:解题思路:注意事项:这样写应该不难理解参考代码:/* 3555555555555 */ #include<stdio.h> void handle(int *arr,char *ch) { …… 题解列表 2017年10月28日 1 点赞 0 评论 1685 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 3444444 */ #include<stdio.h> void handle(char *ch) { int i; for(i =…… 题解列表 2017年10月28日 2 点赞 0 评论 1419 浏览 评分: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 评论 1027 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 33333 */ #include<stdio.h> void handle(char *ch,char *chr) { int i,j; …… 题解列表 2017年10月28日 2 点赞 0 评论 1517 浏览 评分: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 评论 1098 浏览 评分:0.0
JAM计数法 (C语言代码) 摘要:#include <stdio.h> //虽然没人看 int main() { char lower[27]={"abcdefghijklmnopqrstuvwxyz"},first[3…… 题解列表 2017年10月28日 1 点赞 0 评论 1424 浏览 评分: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 评论 2648 浏览 评分: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 评论 864 浏览 评分:0.0