人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,AH,AM,AS,BH,BM,BS; scanf("%d",&N); while(…… 题解列表 2017年09月04日 0 点赞 0 评论 1020 浏览 评分:2.0
回文串 (C语言代码) 摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[260],str2[260]; in…… 题解列表 2017年09月04日 4 点赞 3 评论 3350 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:交流与分享参考代码:#include<stdio.h>int func(char *s,int m);int main(){ char s[80]; int m,n…… 题解列表 2017年09月04日 5 点赞 0 评论 1181 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:注意Hello World 大小写用美式键盘输入法打符号参考代码:#include<stdio.h>int main(){ printf("26个星号\n"); printf("Hello…… 题解列表 2017年09月04日 0 点赞 0 评论 883 浏览 评分:0.0
多输入输出练习1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,tem; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年09月04日 3 点赞 0 评论 1503 浏览 评分:7.3
这可能是一个假的冒泡法 摘要:解题思路:根据数字冒泡排序的思想。注意事项:字符串不可以通过赋值的方式进行传递。参考代码:#include <stdio.h>#include <string.h>int main(){ cha…… 题解列表 2017年09月05日 0 点赞 0 评论 1373 浏览 评分:9.3
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:解题思路:注意事项:在这个网站提交不知道为什么是编译错误,望大家分析,一起进步,谢谢!参考代码:#include<stdio.h>void fun(float);int main(void){ …… 题解列表 2017年09月05日 0 点赞 1 评论 369 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include <stdio.h>int intput(struct Student *p,int len);int age(struct Student *p);int compare(struc…… 题解列表 2017年09月06日 0 点赞 0 评论 1274 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"void main(){ int a,b; printf("Please input two number:\n"); …… 题解列表 2017年09月06日 0 点赞 0 评论 837 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:利用我们前面刚学到的表达式和选择结构,先分别得出各位数字 ,然后安要求输出。注意事项:这样写时代码效率不高, 但是没有BUG。参考代码:#include <stdio.h>#include …… 题解列表 2017年09月06日 0 点赞 0 评论 1058 浏览 评分:2.0