不容易系列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 评论 903 浏览 评分: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 评论 1244 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:注意Hello World 大小写用美式键盘输入法打符号参考代码:#include<stdio.h>int main(){ printf("26个星号\n"); printf("Hello…… 题解列表 2017年09月04日 0 点赞 0 评论 929 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:解题思路:注意事项:在这个网站提交不知道为什么是编译错误,望大家分析,一起进步,谢谢!参考代码:#include<stdio.h>void fun(float);int main(void){ …… 题解列表 2017年09月05日 0 点赞 1 评论 412 浏览 评分: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 评论 1328 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"void main(){ int a,b; printf("Please input two number:\n"); …… 题解列表 2017年09月06日 0 点赞 0 评论 935 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"**************************"<…… 题解列表 2017年09月06日 3 点赞 0 评论 1116 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:这是用户海洋之心的代码,我只是加了点注释,可能注释不是很规范易懂注意事项:参考代码:#include<stdio.h>void move(int a[],int n,int m);int m…… 题解列表 2017年09月07日 0 点赞 0 评论 998 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路: 程序正确,但总是提醒答案错误,是因为结果超出了变量可表示的范围 注意事项: 使用unsigned long int 类型。 参考代码:#include<stdio…… 题解列表 2017年09月08日 0 点赞 0 评论 991 浏览 评分:0.0
回文数(一) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n);int fx(int n);int main(){ int M,L,count; scanf("%…… 题解列表 2017年09月08日 0 点赞 0 评论 1480 浏览 评分:0.0