对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ int x; int y=0; scanf("%d",&x); if(x<1){ y=x; } if((x<10&&x>1)||x…… 题解列表 2024年08月04日 0 点赞 0 评论 395 浏览 评分:0.0
2882: 矩阵归零消减序列和 摘要:解题思路:注意事项:参考代码:n = int(input())l = []row = []cul = []for i in range(n): s = list(map(int,input().…… 题解列表 2024年08月04日 0 点赞 0 评论 170 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ double x; scanf("%lf",&x); if(x>90||x==90){ printf("A"); } if((x>…… 题解列表 2024年08月04日 0 点赞 0 评论 493 浏览 评分:0.0
2945: 素数对 摘要:```cpp #include using namespace std; bool js(int x){ int j=2; while(jsqrt(x); } int main() …… 题解列表 2024年08月04日 0 点赞 0 评论 151 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ int a=0,d=0,n=0; scanf("%d",&a); d=a; int flag=1; while(flag==1){ …… 题解列表 2024年08月04日 0 点赞 0 评论 134 浏览 评分:0.0
2887: 变幻的矩阵 摘要:解题思路:注意事项:参考代码:n = int(input())la = []lb = []sa = []sb = []for i in range(n): s = list(input().sp…… 题解列表 2024年08月04日 0 点赞 0 评论 180 浏览 评分:0.0
2888: 图像模糊处理 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())l = []for i in range(n): s = list(map(int,input().sp…… 题解列表 2024年08月04日 0 点赞 0 评论 206 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 176 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 简洁版 摘要:```c #include #include typedef struct student { char id[100]; char name[100]; in…… 题解列表 2024年08月05日 0 点赞 0 评论 213 浏览 评分:0.0
1060: 二级C语言-同因查找 题解 摘要:```c #include int main(){ for (int i=10;i…… 题解列表 2024年08月05日 0 点赞 0 评论 393 浏览 评分:0.0