题解列表
[编程入门]利润计算 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年第五届真题-分糖果
解题思路:注意事项:参考代码:importjava.util.Scanner;publicclassMain{staticintt;publicstaticvoidmain(String[]args){Scannerscanner=newScanner(System.in);intn=scanner.
暴力解决法(通俗易懂)
摘要:解题思路:没有用链表 就直接干上去注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int i; for(i=0;i<20;i++) { scanf……
C语言训练-计算1977!* 非常大的大数 只能用数组实现(C++语言)
摘要:解题思路:这个是一个非常大的数,只能用数组来存,不懂的可参考 数组表示大数 [C语言训练]舍罕王的失算--【答案错误】--(C语言代码)--请看正确题解#include<iostream>
#……