题解列表
[编程入门]利润计算 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……
改进了别人的代码,删除的数字不能链表在最后
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li……
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟
摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split())
map_ = [list(map(int, input().split()))[:col] f……
蓝桥杯2014年第五届真题-分糖果
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{static int t; public static void main(Stri……
暴力解决法(通俗易懂)
摘要:解题思路:没有用链表 就直接干上去注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int i; for(i=0;i<20;i++) { scanf……