1134题解 坑爹看清题意了 (C语言代码) 摘要:解题思路:表达算式即可注意事项:题目的意思是不符合的那项是不会算进去的参考代码:#include <stdio.h> #include <math.h> int main() { do…… 题解列表 2017年12月12日 0 点赞 0 评论 826 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){int a,b,sum;sum=a+b;printf("sum=%d\n",sum);return 0;}注意事项:参考代码:…… 题解列表 2017年12月11日 0 点赞 0 评论 643 浏览 评分:0.0
蛇行矩阵 (C语言代码) 摘要:#include<stdio.h> int main() { int N; while((scanf("%d",&N))!=EOF) { int sum[100][100],j=0,…… 题解列表 2017年12月11日 0 点赞 0 评论 799 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:用scanf输入;printf输出while使其能多次计算,循环注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(sca…… 题解列表 2017年12月11日 0 点赞 0 评论 548 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路:把最后一行隔开,讲其他的几行先循环再最后输出最后一行。#include<stdio.h> int main() { int i,j; scanf("%d",&j); f…… 题解列表 2017年12月11日 0 点赞 0 评论 831 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题11.11 (C++代码)(想学链表的可以看看) 摘要:解题思路:用链表实现的 可能有点长参考代码:#include<iostream> #include<cstdio> #include<stdlib.h> #include<algorithm>…… 题解列表 2017年12月11日 6 点赞 1 评论 1840 浏览 评分:9.9
我美吗! 摘要:解题思路:由于自己还没学到这所以有所参考,感觉写的还不错!注意事项:参考代码:#include <stdio.h> int yue(int a,int b); //函数声明 int bei(…… 题解列表 2017年12月11日 0 点赞 0 评论 659 浏览 评分:0.0
我美吗! 摘要:解题思路:冒泡法,顾名思义就是把小的泡冒到上面,大的泡沉到下面,最值在中间和其他的值交换; 而选择法,是假定了一个最值,所以最值和其他的值的交换就发生在假定最值的地方;注意事项:参考代码:#incl…… 题解列表 2017年12月11日 0 点赞 0 评论 705 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int a; double x,x1; scanf(…… 题解列表 2017年12月11日 0 点赞 0 评论 866 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include<stdio.h> struct student { char number[20]; char name[10]; int grade[3]; }; v…… 题解列表 2017年12月11日 2 点赞 0 评论 1595 浏览 评分:8.4