C语言训练-计算1977!* 非常大的大数 只能用数组实现(C++语言) 摘要:解题思路:这个是一个非常大的数,只能用数组来存,不懂的可参考 数组表示大数 [C语言训练]舍罕王的失算--【答案错误】--(C语言代码)--请看正确题解#include<iostream> #…… 题解列表 2021年03月25日 0 点赞 0 评论 526 浏览 评分:9.9
暴力解决法(通俗易懂) 摘要:解题思路:没有用链表 就直接干上去注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int i; for(i=0;i<20;i++) { scanf…… 题解列表 2021年03月24日 0 点赞 0 评论 269 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{static int t; public static void main(Stri…… 题解列表 2021年03月24日 0 点赞 0 评论 184 浏览 评分:0.0
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟 摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split()) map_ = [list(map(int, input().split()))[:col] f…… 题解列表 2021年03月24日 0 点赞 0 评论 227 浏览 评分:9.9
改进了别人的代码,删除的数字不能链表在最后 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li…… 题解列表 2021年03月24日 0 点赞 0 评论 259 浏览 评分:2.0
倒计时25天——报时助手 摘要:参考代码:#include <stdio.h> void read(int x){ int m=0; if(x>20){ m = x%10; x = x-m; } swi…… 题解列表 2021年03月24日 0 点赞 0 评论 126 浏览 评分:0.0
[编程入门]三个数找最大值 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; int temp=…… 题解列表 2021年03月24日 0 点赞 0 评论 1025 浏览 评分:9.9
[编程入门]数字的处理与判断 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录…… 题解列表 2021年03月24日 0 点赞 0 评论 433 浏览 评分:9.9
[编程入门]利润计算 c++ 摘要:参考代码:#include<iostream>using namespace std;int fun( long int a){ double b; if (a <= 100000)b = a * …… 题解列表 2021年03月24日 0 点赞 0 评论 573 浏览 评分:9.3
很容易的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; int score; struct ST…… 题解列表 2021年03月24日 0 点赞 0 评论 180 浏览 评分:0.0