~~【Java】版本~~ 摘要:解题思路:注意事项:注意二位数组边界,内外边界参考代码:import java.util.*; public class Main { public static void main(Str…… 题解列表 2024年02月17日 0 点赞 0 评论 231 浏览 评分:0.0
乘方计算C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,a,n; scanf("%d %d",&a,&n); m=pow(a,n); …… 题解列表 2024年02月17日 0 点赞 0 评论 296 浏览 评分:0.0
表达式计算1 摘要:解题思路:注意事项:参考代码:#include<cstdio>using namespace std;const int N=10001;int a[N],b[N];char op,k;bool ke…… 题解列表 2024年02月17日 0 点赞 0 评论 428 浏览 评分:9.9
与指定数字相同的数的个数C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int M,m,i,count=0; scanf("%d %d",&M,&m); int a[…… 题解列表 2024年02月17日 0 点赞 0 评论 243 浏览 评分:0.0
整数的个数C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k,i,sum1=0,sum2=0,sum3=0; scanf("%d",&k); i…… 题解列表 2024年02月17日 0 点赞 0 评论 247 浏览 评分:0.0
满足条件的数累加C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i,sum=0; scanf("%d %d",&m,&n); for(i=m;…… 题解列表 2024年02月17日 0 点赞 0 评论 309 浏览 评分:0.0
奇数求和C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i,sum=0; scanf("%d %d",&m,&n); for(i=m;…… 题解列表 2024年02月17日 0 点赞 0 评论 459 浏览 评分:0.0
复杂的问题简单分析!! 摘要:解题思路:简单的思路分析,我们把牛牛分成四份:今年能生牛的n1,出生一年的牛n2,出生了两年的牛n3,出生了三年的n4.每过了一年,实际上就是把能生牛的牛数量多加一个n4的数量,然后后面每一个牛的数量…… 题解列表 2024年02月17日 0 点赞 0 评论 346 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> int Is_wushu(int n) { int arr…… 题解列表 2024年02月17日 0 点赞 0 评论 193 浏览 评分:0.0
多边形内角和C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,i; scanf("%d",&n); int a[n+1]; sum…… 题解列表 2024年02月17日 0 点赞 0 评论 282 浏览 评分:0.0