题解 3016: 第几项 摘要: #include using namespace std; int main(){ int i=0,a,b,c; cin>>b; for…… 题解列表 2023年11月14日 0 点赞 0 评论 214 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define N 202#define M 5002int dp[N][M];int weight…… 题解列表 2023年11月14日 0 点赞 0 评论 454 浏览 评分:0.0
最简单易懂,看不懂你来打我! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,min,max; int x,y; scanf("%d%d",&m,&n); i…… 题解列表 2023年11月14日 0 点赞 0 评论 152 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数(C语言) 摘要:解题思路:注意事项:参考代码:方法一:#include<stdio.h>int main(){ int m,n,a,b; scanf("%d %d",&m,&n); a=m; …… 题解列表 2023年11月15日 0 点赞 0 评论 178 浏览 评分:0.0
C语言训练-字符串正反连接(用指针) 摘要:```c #include int main() { char a[102]; scanf("%s",a); printf("%s",a); char *p=a; while…… 题解列表 2023年11月15日 0 点赞 0 评论 209 浏览 评分:0.0
[编程入门]三个数最大值 (c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using std::cout;int main(){ int a,b,c; std::cin>>a>>b>>c; …… 题解列表 2023年11月15日 0 点赞 0 评论 174 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class test2877 { public static void main(String[] arg…… 题解列表 2023年11月15日 0 点赞 0 评论 241 浏览 评分:0.0
题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long a,b,c; cin>>a>>b…… 题解列表 2023年11月15日 0 点赞 0 评论 254 浏览 评分:0.0
题解 2812: 球弹跳高度的计算 摘要: #include using namespace std; int main(){ double a,b; cin>>a; b=a; …… 题解列表 2023年11月15日 0 点赞 0 评论 246 浏览 评分:0.0