1092——————A+B for Input-Output Practice 摘要:题目:1092: A+B for Input-Output Practice **题目描述** Your task is to calculate the sum of some integers…… 题解列表 2022年08月20日 0 点赞 0 评论 299 浏览 评分:0.0
题解 1035: [编程入门]自定义函数之字符类型统计(C) 摘要:注意事项:主函数array数组开大点,我刚开始是array[50],出现运行错误50分,检查了下感觉没什么问题,换了个array[100]就通过了。参考代码:#include<stdio.h> #i…… 题解列表 2022年08月20日 0 点赞 0 评论 324 浏览 评分:0.0
思路简单,可以参考参考。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int i,j,k,n,x,y,a[39][39]; …… 题解列表 2022年08月20日 0 点赞 0 评论 370 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:```c //自定义函数之数字分离 #include #include void NumSepara(){ char s[5];//s[4]编译不通过,数组大小定义大于4才通过,这系统…… 题解列表 2022年08月20日 0 点赞 0 评论 331 浏览 评分:0.0
1517——————蓝桥杯算法提高VIP-实数相加 摘要:**import** 导入模块,每次使用模块中的函数都要是定是哪个模块。 **from…import *** 导入模块,每次使用模块中的函数,直接使用函数就可以 **decimal 模块**:…… 题解列表 2022年08月21日 0 点赞 0 评论 418 浏览 评分:0.0
这一题倒是比前一道简单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h> main(){ int* p,i=0,exce=0,quil=0,unq=0; p …… 题解列表 2022年08月21日 0 点赞 0 评论 240 浏览 评分:0.0
密码(C语言) 摘要:解题思路:注意事项:比较简单,没什么好主意的参考代码:#include<stdio.h>#include<string.h>#include <ctype.h>#include<math.h>int …… 题解列表 2022年08月21日 0 点赞 0 评论 260 浏览 评分:0.0
编写题解 1121: C语言训练-8除不尽的数(笨办法) 摘要:根据题目要求,设置好判断条件(if语句),然后使用for循环(循环体中未设置判断条件),从大到小取数,代入进去尝试,直到遇到符合所有条件的数,使用break终止跳出循环,并且输出。 ```c //…… 题解列表 2022年08月21日 0 点赞 0 评论 371 浏览 评分:0.0
个人思路,随便看看吧 摘要:解题思路:学会列表的相关操作很重要注意事项:参考代码:def fun(n): l1 = [n] while n != 1: if n % 2 == 0: …… 题解列表 2022年08月22日 0 点赞 0 评论 322 浏览 评分:0.0
绝对值排序(C语言)冒牌排序进行排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,j,x,t; while(scanf("%d",&x)!…… 题解列表 2022年08月22日 0 点赞 0 评论 269 浏览 评分:0.0