题解列表

筛选

自定义函数输出原音字符

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char……

我的最简单(我说的)

摘要:解题思路:找规律注意事项:参考代码:#include<stdio.h>int main(){ int T; scanf("%d",&T); while(T--) { int x; scanf("%……

运用多个变量

摘要:解题思路:注意事项:参考代码:#includeint main(){    int n,a,i,b,k,t;    float j,sum=0;    scanf("%d",&n);    a=2;b……

C语言三循环暴力解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int jc(int a[],int n){    int i,flag=0;    int tong=a[0];    for(i=1……

Java代码,求优化

摘要:有无大佬优化一下,内存和耗时都要爆了参考代码:public static void main(String[] args) { // 给定一个长度为n的数组,进行m次查询。 // 对于每一……