求圆的面积 (C语言代码)我又又水了一题 摘要:解题思路:参考代码:#include<stdio.h> int main(){ float r; scanf("%f",&r); printf("%.2f",r*r*3.14159265…… 题解列表 2019年04月17日 0 点赞 0 评论 1134 浏览 评分:9.9
You are my brother (C语言代码) 摘要:解题思路:贴个代码 不想写注释了注意事项:参考代码:#include<stdio.h>typedef struct node{ int a; int b;} L;L A[1005];int main(…… 题解列表 2019年04月18日 0 点赞 0 评论 977 浏览 评分:9.9
生日日数 (Python代码) 摘要:解题思路:注意事项:参考代码:#! /usr/bin/python3 # Copyright(c) 2019 note.jorhelp.cn # Authored by Jorhelp o…… 题解列表 2019年04月19日 2 点赞 0 评论 1578 浏览 评分:9.9
诡秘的余数 (Python代码) 摘要:解题思路: Python太坏了,啥都帮我做了,我还怎么学习注意事项:参考代码:while True: try: n,m=map(int, input().sp…… 题解列表 2019年04月18日 0 点赞 1 评论 605 浏览 评分:9.9
蓝桥杯2014年第五届真题-分糖果 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 32 2 41 1 21+1=2 1+2=3 2+1=3 2 题解列表 2019年04月19日 0 点赞 0 评论 917 浏览 评分:9.9
蓝桥杯历届试题-国王的烦恼 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct node{ int x,y,z;} L;L a[10050];void…… 题解列表 2019年04月21日 0 点赞 0 评论 962 浏览 评分:9.9
C语言训练-排序问题<2> (C++代码) 摘要:解题思路:sort 自定义排序规则注意事项:参考代码:#include <bits/stdc++.h>using namespace std;bool cmp(int a,int b){ return…… 题解列表 2019年04月21日 0 点赞 0 评论 546 浏览 评分:9.9
[编程入门]选择排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.header>int m (){ int m,i,j,a[10]; for(i=0;i<10;i++) { scanf("%d",&a…… 题解列表 2019年04月22日 1 点赞 9 评论 4497 浏览 评分:9.9
永远的丰碑 (C语言代码)大连交通大学的番可以结束了吧?这题是找最大值!! 摘要:解题思路:找最大值注意事项:1,max在该题是可以赋值0,因为高度不为负数,但是若是有负数,则应该赋值a[0]; 2,max=a[0]应该放在输入后,否则答案错误百分之五…… 题解列表 2019年04月23日 0 点赞 0 评论 813 浏览 评分:9.9
迷宫问题 (C++代码)BFS模板 摘要:解题思路: 几乎可以说是一个模板题目,记得收藏这种模板,BFS的模板参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(f…… 题解列表 2019年04月24日 0 点赞 2 评论 1507 浏览 评分:9.9