2019: 滚动的榜单(C语言) 摘要: #include int main() { int i,j,k,n,l; int a[3001],b[3001]; s…… 题解列表 2021年10月27日 0 点赞 0 评论 956 浏览 评分:6.7
题解 1063: 二级C语言-统计字符 摘要:参考代码:#include<stdio.h>void main(){ char str; int i; int zimu,kongge,shuzi,qita; i=0; …… 题解列表 2021年10月27日 0 点赞 0 评论 1155 浏览 评分:9.9
普通方法(初学者方法) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2021年10月27日 0 点赞 0 评论 384 浏览 评分: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 评论 304 浏览 评分: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 评论 343 浏览 评分: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 评论 372 浏览 评分:0.0
来骗来偷袭 摘要:解题思路:以为答案已经给你了所以直接输出即可注意事项:可用来骗分参考代码:#include <stdio.h>int main() { printf("cock=0,hen=25,chicken…… 题解列表 2021年10月27日 0 点赞 0 评论 400 浏览 评分: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 评论 631 浏览 评分: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 评论 320 浏览 评分:0.0
c++语言1069: 二级C语言-寻找矩阵最值,用到了二维数组 摘要:解题思路:最大值采用“打擂台”的算法,双重循环找最大值注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main()…… 题解列表 2021年10月27日 0 点赞 0 评论 878 浏览 评分:8.7