蓝桥杯算法提高VIP-剪刀石头布-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;/******************[算法提高]剪刀 石头 布**********************//****…… 题解列表 2020年12月08日 0 点赞 0 评论 380 浏览 评分:0.0
[递归]母牛的故事-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int num(int n);int main(){ int n; int i; int arr[1024] = {1, 2, 3, …… 题解列表 2020年12月08日 0 点赞 0 评论 492 浏览 评分:9.9
不容易系列2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum; sum = 1; while (scanf("%d",&n) != EOF) { f…… 题解列表 2020年12月08日 0 点赞 0 评论 487 浏览 评分:0.0
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int sn=0, n, j,i, num_i, ratio; scanf("%d"…… 题解列表 2020年12月08日 0 点赞 0 评论 261 浏览 评分:9.9
信息学奥赛一本通T1314-过河卒-题解(C语言代码) 摘要:```c #include int main() { int m,n,qipan[25][25]={0},x,y,i,j; long long walk[25][25]={0}; s…… 题解列表 2020年12月09日 0 点赞 0 评论 1092 浏览 评分:5.9
不容易系列2(递归)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://由数学知识可知,有n-1的阶乘种可能,真的吗?(其实是错误的,可以写一下,但不知为啥能过编译,很神奇)#includeint main (){ int n; whil…… 题解列表 2020年12月09日 0 点赞 0 评论 461 浏览 评分:0.0
成绩等级转换-题解(C++代码)满分题解(真的) 摘要:解题思路:我用最笨的方法我用if来一个加一个的算。(最后一个用else)注意事项:参考代码:#include<iostream>using namespace std;int main(){ int …… 题解列表 2020年12月09日 0 点赞 0 评论 600 浏览 评分:9.9
[编程入门]自定义函数处理素数-题解(C语言代码) 摘要:解题思路:注意事项:直接上代码!参考代码:#include<stdio.h>int oh(int a);int main(){ int a; scanf("%d",&a);if(oh(a)…… 题解列表 2020年12月09日 0 点赞 1 评论 955 浏览 评分:9.9
[编程入门]二维数组的转置-题解(C语言代码) 摘要:解题思路:注意事项:直接冲代码!两个两个嵌套的for循环便能成功!参考代码:#include<stdio.h>int main(){ int a[3][3]={0}; int i,j; …… 题解列表 2020年12月09日 0 点赞 0 评论 786 浏览 评分:9.9
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要:解题思路:同时传入两个数组,第二个数组用于带出数据注意事项:参考代码:#include "stdio.h"int count(char *arr,int *fina,int n);int main(i…… 题解列表 2020年12月09日 0 点赞 0 评论 587 浏览 评分:9.9