基础训练数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a[1000],k,j,t; scanf("%d",&n); for(i=0;i<n;i++) …… 题解列表 2019年04月15日 0 点赞 0 评论 976 浏览 评分:9.9
统计字符数 (C++代码)今天又来水题了! 摘要:解题思路: 变成了一个学弟催我写题的情况了....参考代码:(正确)#include<bits/stdc++.h> using namespace std; int n,max_chr; …… 题解列表 2019年04月15日 1 点赞 0 评论 1099 浏览 评分:9.9
教学楼的楼梯 数组做法(C语言代码) 摘要:解题思路:从第一层阶梯开始,我们试着列一下不同走法:2层: 1,1; 2; 共2种;3层: 1,1,1; 1,2; 2,1; 共3种;4层: 1,1,1,1; …… 题解列表 2019年04月16日 2 点赞 4 评论 1155 浏览 评分:9.9
统计字符数 (C语言代码)虽然麻烦,但是直白 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[27]="abcdefghijklmnopqrstuvwxyz…… 题解列表 2019年04月16日 0 点赞 0 评论 1268 浏览 评分: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 评论 744 浏览 评分:9.9
P1014 (C++代码)数据有错 摘要: 代码是正确的,区间 Dp。#include <bits/stdc++.h> constexpr auto Inf = 0X3F3F3F3F; 题解列表 2019年04月17日 0 点赞 0 评论 1484 浏览 评分:9.9
求圆的面积 (C语言代码)我又又水了一题 摘要:解题思路:参考代码:#include<stdio.h> int main(){ float r; scanf("%f",&r); printf("%.2f",r*r*3.14159265…… 题解列表 2019年04月17日 0 点赞 0 评论 1186 浏览 评分: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 评论 1074 浏览 评分:9.9
生日日数 (Python代码) 摘要:解题思路:注意事项:参考代码:#! /usr/bin/python3 # Copyright(c) 2019 note.jorhelp.cn # Authored by Jorhelp o…… 题解列表 2019年04月19日 2 点赞 0 评论 1716 浏览 评分:9.9
诡秘的余数 (Python代码) 摘要:解题思路: Python太坏了,啥都帮我做了,我还怎么学习注意事项:参考代码:while True: try: n,m=map(int, input().sp…… 题解列表 2019年04月18日 0 点赞 1 评论 653 浏览 评分:9.9