题解列表
A+B for Input-Output Practice (IV) (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int t, a, sum, i; scanf("%d", &t); do { &nb
A+B for Input-Output Practice (III) (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main{ int a,b; while(~scanf("%d%d", &a, &b)) { if……
A+B for Input-Output Practice (II) (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",……
A+B for Input-Output Practice (I) (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,d,e;scanf("%d%d",&a,&b);scanf("%d%d",&c,&d);e=a……
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)
摘要:解题思路:用函数递归思想解题。注意事项:需说明最后一步递归时,还剩一个桃子。参考代码:#include <stdio.h>int main(){ int wap(int d); int x,y; sc……
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)
摘要:解题思路:这题日了狗了,不知道为啥过不了注意事项:参考代码:/*
search and handle
*/
#include<stdio.h>
#define N 10
void searc……
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)
摘要:解题思路:二维数组实现注意事项:参考代码:/*
string sort
*/
#include<stdio.h>
#include<string.h>
#define N 3
void s……
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)
摘要:解题思路:注意事项:参考代码:/*
sort
*/
#include<stdio.h>
#define N 3
void sort(int arr[])
{
int i,j,mi……
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)
摘要:解题思路:注意事项:参考代码:/*
ez
*/
#include<stdio.h>
int main()
{
char ch[1000];
gets(ch);
……