信息学奥赛一本通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 评论 1145 浏览 评分:5.9
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int sn=0, n, j,i, num_i, ratio; scanf("%d"…… 题解列表 2020年12月08日 0 点赞 0 评论 302 浏览 评分: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 评论 526 浏览 评分: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 评论 539 浏览 评分:9.9
蓝桥杯算法提高VIP-剪刀石头布-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;/******************[算法提高]剪刀 石头 布**********************//****…… 题解列表 2020年12月08日 0 点赞 0 评论 431 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数-题解(C语言代码)递归 调用 摘要:解题思路:注意事项:参考代码: #include <stdio.h> int gcd(int m,int n) { int t; if(m<n 题解列表 2020年12月08日 0 点赞 0 评论 483 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Java代码) 摘要:解题思路:注意事项:参考代码:/******************模拟计算器**********************/import java.util.Scanner;public class …… 题解列表 2020年12月08日 0 点赞 0 评论 367 浏览 评分:0.0
C语言考试练习题_排列-题解(Java代码) 摘要:解题思路:注意事项:参考代码:/******************_排列**********************/import java.util.Scanner;public class Ma…… 题解列表 2020年12月08日 0 点赞 0 评论 1076 浏览 评分:0.0
C语言训练-求具有abcd=(ab+cd)2性质的四位数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:/******************求具有abcd=(ab+cd)2性质的四位数**********************/public class Main { …… 题解列表 2020年12月08日 0 点赞 0 评论 429 浏览 评分:0.0
信息学奥赛一本通T1313-位数问题-题解(C语言代码)不用dp,不用数组,一个循环解决 摘要:```c #include #define MOD 12345 int main() { int n,i,m=1; scanf("%d",&n); int a=9,s=9; …… 题解列表 2020年12月08日 0 点赞 0 评论 917 浏览 评分:7.2