统计字符数 (C语言代码)虽然麻烦,但是直白 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[27]="abcdefghijklmnopqrstuvwxyz…… 题解列表 2019年04月16日 0 点赞 0 评论 1308 浏览 评分:9.9
教学楼的楼梯 (C语言代码)与题1257一模一样!! 摘要:解题思路:烂大街的斐波那契数列。。。。。 n==1||n==2,fun(n)=1; n>2,fun(n)=fun(n-1)+fun(n-2)注意事…… 题解列表 2019年04月17日 0 点赞 0 评论 769 浏览 评分:9.9
求圆的面积 (C语言代码)我又又水了一题 摘要:解题思路:参考代码:#include<stdio.h> int main(){ float r; scanf("%f",&r); printf("%.2f",r*r*3.14159265…… 题解列表 2019年04月17日 0 点赞 0 评论 1210 浏览 评分: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 评论 1131 浏览 评分:9.9
生日日数 (Python代码) 摘要:解题思路:注意事项:参考代码:#! /usr/bin/python3 # Copyright(c) 2019 note.jorhelp.cn # Authored by Jorhelp o…… 题解列表 2019年04月19日 2 点赞 0 评论 1786 浏览 评分:9.9
诡秘的余数 (Python代码) 摘要:解题思路: Python太坏了,啥都帮我做了,我还怎么学习注意事项:参考代码:while True: try: n,m=map(int, input().sp…… 题解列表 2019年04月18日 0 点赞 1 评论 675 浏览 评分:9.9
蓝桥杯2014年第五届真题-分糖果 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 32 2 41 1 21+1=2 1+2=3 2+1=3 2 题解列表 2019年04月19日 0 点赞 0 评论 1022 浏览 评分: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 评论 1065 浏览 评分: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 评论 636 浏览 评分: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 评论 4645 浏览 评分:9.9