题解列表

筛选

[编程入门]利润计算 c++

摘要:参考代码:#include<iostream>using namespace std;int fun(  long int a){ double b; if (a <= 100000)b = a * ……

很容易的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; int score; struct ST……

看不懂你来砍我

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; int score; struct ST……

倒计时25天——时间转换

摘要:注意审题,输出的格式:输出只有一行,是以“< H> :< M> :< S> ”的格式所表示的时间,不包括引号并不是输出< H> :< M> :< S>  而是 H : M : S到嘴的肉都没了参考代码……

蛇形矩阵题解

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

新手必懂!!!!!!!!1

摘要:解题思路:循环,判断    注意事项:注意细节参考代码:#include <stdio.h>int main(){    int a,b,c;    for(a=123;a<=333;a++)    ……

倒计时25天——FJ字符串

摘要:从思路来看这道题考的递归,但是只是思路,在编程的时候却犹豫了:A4=A3+D+A3,想着怎么保存A3使其对称,是不是需要保存A4完整打出,参考优质答案才恍然,可以递归过程中直接打印出。参考代码:#in……