简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"void main(){ int a,b; printf("Please input two number:\n"); …… 题解列表 2017年09月06日 0 点赞 0 评论 839 浏览 评分: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 评论 1275 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:解题思路:注意事项:在这个网站提交不知道为什么是编译错误,望大家分析,一起进步,谢谢!参考代码:#include<stdio.h>void fun(float);int main(void){ …… 题解列表 2017年09月05日 0 点赞 1 评论 369 浏览 评分:0.0
这可能是一个假的冒泡法 摘要:解题思路:根据数字冒泡排序的思想。注意事项:字符串不可以通过赋值的方式进行传递。参考代码:#include <stdio.h>#include <string.h>int main(){ cha…… 题解列表 2017年09月05日 0 点赞 0 评论 1375 浏览 评分:9.3
多输入输出练习1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,tem; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年09月04日 3 点赞 0 评论 1505 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:注意Hello World 大小写用美式键盘输入法打符号参考代码:#include<stdio.h>int main(){ printf("26个星号\n"); printf("Hello…… 题解列表 2017年09月04日 0 点赞 0 评论 883 浏览 评分:0.0
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语言代码) 摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[260],str2[260]; in…… 题解列表 2017年09月04日 4 点赞 3 评论 3350 浏览 评分:9.9
人见人爱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 评论 1022 浏览 评分:2.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==2) return 1; if(n==3) return 2; else re…… 题解列表 2017年09月04日 0 点赞 0 评论 835 浏览 评分:0.0