题解列表

筛选

记录解题过程。

摘要:解题思路:  注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double x1, x2,x3,x4;    d……

简单易懂!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[25],str2[25]; gets(str); char……

简单点自由下落问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>float geat(int k){   float s=1.0;   float a=1/2.0;   for(int i=0;i<k……

自守数问题

摘要:解题思路:注意事项:用long型,不然会超出范围参考代码:public class Main {    public static void main(String[] args) {        ……

简单易懂!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>//判断是否为闰年    int leap(int n)    {         if((n%4==0&&n%100!=0)||n%4……

1003一行解(Python)

摘要:解题思路:注意事项:参考代码:print(&#39;&#39;.join(list(map(lambda x : chr(ord(x) + 4), input()))))基础代码(完全问题题目要求)c……

题目 1030: [编程入门]二维数组的转置

摘要:解题思路:输入:声明一个3*3的数组a[3][3],用两个for循环嵌套输入。输出:只需构造一个方法,在方法将数组的i(行)与j(列)对调输出就行了。但我看了许多大佬发的方法,虽然也是用函数实现的,但……