优质题解 [编程入门]利润计算C语言代码 摘要:解题思路:注意事项:1.10w可以写成科学计数法1e5,注意e前面的1不能省略,因为e前必须得有数字2.只有int型变量才可以和1%(即带百分号的数字,比如7.5%啊等等)相乘3.答案要求输出精度为个…… 题解列表 2023年07月10日 0 点赞 0 评论 1058 浏览 评分:0.0
只用循环和判断语句不用数组也能写? 摘要:解题思路:我的思路是先遍历灯,再遍历人在,其中用K去储存灯的状态,判断每一个灯在遍历一遍人后是否为关闭状态,是的话就输出。注意事项:参考代码:#include<iostream>using names…… 题解列表 2023年07月09日 0 点赞 0 评论 358 浏览 评分:10.0
完数的判断-解题(C语言代码) 摘要:解题思路:首先我们需要知道什么是完数?完数是指一个数的所有真因子之和等于该数本身,例如6是一个完数,因为6的真因子有1、2、3,而1+2+3=6。然后我们需要考虑的是一个数的真因子怎么求?我的思路是将…… 题解列表 2023年07月09日 0 点赞 0 评论 350 浏览 评分:0.0
题解: 正常血压 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,b,z=0,maxx=0; c…… 题解列表 2023年07月09日 0 点赞 0 评论 279 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,x,y,z=0,maxx=0; ci…… 题解列表 2023年07月09日 0 点赞 0 评论 251 浏览 评分:0.0
药房管理1+1=33333333333 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n,q,b=0; cin>>m>…… 题解列表 2023年07月09日 0 点赞 0 评论 261 浏览 评分:0.0
题解: 药房管理 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,n,q,ans=0; cin>>m…… 题解列表 2023年07月09日 0 点赞 0 评论 248 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void tongji(char str[100],int out[4]){ int i; …… 题解列表 2023年07月09日 0 点赞 0 评论 268 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int k, a = 1, b = 1, c = 1; …… 题解列表 2023年07月09日 0 点赞 0 评论 445 浏览 评分:2.0
蓝桥杯算法提高VIP-队列操作 摘要:解题思路:理解好头指针front 和尾指针 rear 的位置即可当两个相等时 :队列为空当rear==数组长度减一时:队列为满计算队列大小即:尾指针减头指针注意事项:参考代码:import java.…… 题解列表 2023年07月09日 0 点赞 0 评论 409 浏览 评分:9.9