题解列表

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:hua=float(input()) she=5/9*(hua-32) print("%.2f"%she)……

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{     public static void main(String[] a……

自定义函数之字符提取

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void yuany(char a[]){    char b[100];    int i,j=0;    for(i=0;i<100……

1757: 矩阵对角求和

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){    int n, sum=0, num=0;    int ar……

比较简单的代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>   int gcd(int a,int b);   int lcm(int a,int b);int main(){ int m,n;……

普通解题方法

摘要:解题思路:没什么好想的注意事项:注意空格数就行了。参考代码:#include<stdio.h>int main(){char c;scanf ("%c",&c ); printf("  %c  \n"……

普通解题方法

摘要:解题思路:注意事项:看就行了。参考代码:#include<stdio.h>int main (){ char c; c = getchar(); char d; d = c+32; if(&#39;A……

无虑,无悔,无题。

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ printf("yes\n"); return 0;}……

八皇后,来看看吧真的很详细了

摘要:解题思路:特别注意右对角线不能写X-Y哦!n*n的棋盘大小也就是能放n个皇后数组大小要定义30以上哦参考代码:#include"bits/stdc++.h" using namespace std;……