题解列表
倒计时25天——时间转换
摘要:注意审题,输出的格式:输出只有一行,是以“< H> :< M> :< S> ”的格式所表示的时间,不包括引号并不是输出< H> :< M> :< S> 而是 H : M : S到嘴的肉都没了参考代码……
蓝桥杯算法训练VIP-三个数字的排序
摘要:```java
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public ……
题解 2065: [STL训练]{A} + {B} (C语言)我来写个C版本的吧,代码不如人家吊炸天,但是你能看懂
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
//……
[编程入门]利润计算 c++
摘要:参考代码:#include<iostream>using namespace std;int fun( long int a){ double b; if (a <= 100000)b = a * ……
[编程入门]数字的处理与判断 (c++)
摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录……
[编程入门]三个数找最大值 (c++)
摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; int temp=……
倒计时25天——报时助手
摘要:参考代码:#include <stdio.h>
void read(int x){
int m=0;
if(x>20){
m = x%10;
x = x-m;
}
swi……