三角形题解(动态规划) 摘要:解题思路: DP注意事项:参考代码:import java.util.Scanner;public class 数字塔从上到下所有路径中和最大的路径DP { public static void ma…… 题解列表 2021年12月04日 0 点赞 0 评论 365 浏览 评分:0.0
Java语言 矩阵对角线求和 摘要:解题思路:注意事项:数组下标从零开始参考代码:Scanner scanner = new Scanner(System.in); int[][] s = new int[3][3]; …… 题解列表 2021年12月04日 0 点赞 0 评论 843 浏览 评分:7.3
看题解学的 摘要:参考代码:#include<stdio.h>#define MAX ((a>b)?((a>c)?a:c):((b>c)?b:c))float FindMax(float a,float b,float…… 题解列表 2021年12月04日 0 点赞 0 评论 303 浏览 评分:0.0
简洁 !!! 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main (){ int t; int y=0,u=1,m=1; scanf(…… 题解列表 2021年12月04日 0 点赞 0 评论 209 浏览 评分:0.0
弟弟的作业 摘要:#include<stdio.h> int main() { int a,b,c,k,count=0; char op; //操作符 while (~(k=scan…… 题解列表 2021年12月04日 0 点赞 0 评论 416 浏览 评分:0.0
成绩评定 摘要:解题思路:#include<stdio.h>int main(){ int score; scanf("%d",&score); if(score>=90) { printf("A\n"); } e…… 题解列表 2021年12月04日 0 点赞 0 评论 360 浏览 评分:8.0
结论:x*y-x-y 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int x,y;scanf("%d %d",&x,&y);printf("%d",x*y-x-y); return…… 题解列表 2021年12月04日 0 点赞 4 评论 555 浏览 评分:9.5
用 列表来解决,1054: 二级C语言-计算素数和 摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())if m > n: m,n = n,mif m<=1: m = 2list0 = []list1 …… 题解列表 2021年12月04日 0 点赞 0 评论 929 浏览 评分:9.9
字母转为下一字母(没错我又来报复社会了) 摘要:解题思路:注意事项:参考代码:int main(){ char a[81]; int i = 0; while ((a[i] = getchar()) != '\n' && i < 8…… 题解列表 2021年12月04日 0 点赞 0 评论 596 浏览 评分:0.0
蓝桥杯算法训练VIP-比较字符串 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; cha…… 题解列表 2021年12月04日 0 点赞 0 评论 309 浏览 评分:0.0