题解列表

筛选

3008: 买笔(超级简单)

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;    int b……

题解 3008: 买笔

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int x,a,b;    cin>>x;    a……

题解 2544: N以内累加求和

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int a;    cin>>a;    cout<<(a-1……

C语言填鸭型

摘要:解题思路:检查左括号右括号是否配对注意事项:参考代码:#include"stdio.h"int main(){ char p[500]; memset(p,0,500); int i,j = 0; i……

蓝桥杯历届试题-回文数字-纯暴力(Java)

摘要:# 解题思路: 对每一个数的每个位的总值是否与输入的值相同 并且对两个sb对象进行判断,完全相同就是回文数字 ## 注意事项: i的值不能直接参加运算,否则会影响后续的循环 ……

编写题解 3040: An Easy Problem

摘要:解题思路:就那样注意事项:参考代码:#include <stdio.h>#include <stdbool.h>int js(int i) {    int t = 0;    while (i > ……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   private String year, month, day;     publi……