普通方法(初学者方法) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2021年10月27日 0 点赞 0 评论 250 浏览 评分:6.0
简单的字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10001],k; int i,j,n,l; scanf("%…… 题解列表 2021年10月27日 0 点赞 0 评论 208 浏览 评分:0.0
阶乘数列-记录一下 摘要:#include<stdio.h>int main(){ int i; double j=1,sum=0; for(i=1;i<=30;i++) { j = 题解列表 2021年10月27日 0 点赞 0 评论 162 浏览 评分:0.0
题解 1060: 二级C语言-同因查找 c语言 摘要:解题思路:用event事件来判断是否为为237整除注意事项:无参考代码:#include<stdio.h>int event(int a) { if(a%2==0 &&a%3==0 && a%…… 题解列表 2021年10月27日 0 点赞 0 评论 249 浏览 评分:0.0
来骗来偷袭 摘要:解题思路:以为答案已经给你了所以直接输出即可注意事项:可用来骗分参考代码:#include <stdio.h>int main() { printf("cock=0,hen=25,chicken…… 题解列表 2021年10月27日 0 点赞 0 评论 271 浏览 评分:0.0
二级C语言-阶乘公式求职 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int k){ double result=1; for (int i=1;i<=k;i++) …… 题解列表 2021年10月27日 0 点赞 0 评论 392 浏览 评分:0.0
C语言一看就会的题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[81]; int i,l,j; while(gets(s…… 题解列表 2021年10月27日 0 点赞 0 评论 203 浏览 评分:0.0
c++语言1069: 二级C语言-寻找矩阵最值,用到了二维数组 摘要:解题思路:最大值采用“打擂台”的算法,双重循环找最大值注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main()…… 题解列表 2021年10月27日 0 点赞 0 评论 765 浏览 评分:8.7
累加法求解高度总和for + if 摘要:解题思路:累加注意事项:if(i<N)参考代码://题目 1019: [编程入门]自由下落的距离计算//一球从M米高度自由下落,每次落地后返回原高度的一半,再落下//它在第N次落地时反弹多高?共经过多…… 题解列表 2021年10月27日 0 点赞 0 评论 256 浏览 评分:0.0
简简单单的解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,sum=0; scanf("%d",&n); for(i=1;i<=n;i++) { j=…… 题解列表 2021年10月26日 0 点赞 0 评论 245 浏览 评分:0.0