对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ double x; scanf("%lf",&x); if(x>90||x==90){ printf("A"); } if((x>…… 题解列表 2024年08月04日 0 点赞 0 评论 575 浏览 评分: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 评论 168 浏览 评分: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 评论 156 浏览 评分:0.0
2887: 变幻的矩阵 摘要:解题思路:注意事项:参考代码:n = int(input())la = []lb = []sa = []sb = []for i in range(n): s = list(input().sp…… 题解列表 2024年08月04日 0 点赞 0 评论 212 浏览 评分: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 评论 229 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 209 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 简洁版 摘要:```c #include #include typedef struct student { char id[100]; char name[100]; in…… 题解列表 2024年08月05日 0 点赞 0 评论 239 浏览 评分:0.0
1060: 二级C语言-同因查找 题解 摘要:```c #include int main(){ for (int i=10;i…… 题解列表 2024年08月05日 0 点赞 0 评论 440 浏览 评分:0.0
1061: 二级C语言-计负均正 题解 摘要:```c #include int main(){ int arr[20],count=0; float average=0.0; for(int i=0;i0){…… 题解列表 2024年08月05日 1 点赞 0 评论 668 浏览 评分:0.0
1062: 二级C语言-公约公倍 暴力枚举 摘要:```c #include int main() { int n, m, temp1,temp2; scanf("%d %d", &n, &m); if (n > …… 题解列表 2024年08月05日 0 点赞 0 评论 207 浏览 评分:0.0