1494: 蓝桥杯算法提高VIP-企业奖金发放——Ccp 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a; scanf("%lf",&a); if(a<=100000)printf(…… 题解列表 2023年03月09日 0 点赞 0 评论 135 浏览 评分:9.9
一种超简单的方法 摘要:#include int main() { double n,m; scanf("%lf",&n); if(n…… 题解列表 2022年12月06日 0 点赞 0 评论 126 浏览 评分:9.9
企业奖金发放,带小数点, 摘要:解题思路:注意事项:不知道为啥,在编译器上没问题,就是提交后显示答案错误。参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); …… 题解列表 2022年03月21日 0 点赞 0 评论 181 浏览 评分:6.0
简单的写法 摘要:解题思路:如21万,因为利润低于或等于10万元时,奖金可提10%, 高于10万元的部分且低于20万元 ,可提成7.5%, …… 题解列表 2021年12月09日 0 点赞 0 评论 190 浏览 评分:9.9
企业奖金发放超简单C语言代码 摘要:#include<cstdio> const int c=100000; int main(){ double n,j; scanf("%lf",&n); if(n<…… 题解列表 2021年03月19日 0 点赞 0 评论 445 浏览 评分:9.9
企业奖金发放(C语言) 摘要:解题思路:利用宏定义+if-else分支语句注意事项:审清题意即可参考代码:#include <stdio.h>#define N 100000int main(){ double profit…… 题解列表 2021年03月13日 0 点赞 0 评论 486 浏览 评分:9.9
1494: 蓝桥杯算法提高VIP-企业奖金发放 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double profit,total=0;//利润、奖金 scanf("%lf",&profit); sw…… 题解列表 2021年03月03日 0 点赞 0 评论 140 浏览 评分:0.0
蓝桥杯算法提高VIP-企业奖金发放-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2021年01月08日 0 点赞 0 评论 276 浏览 评分:6.0
蓝桥杯算法提高VIP-企业奖金发放-题解(C语言代码) 摘要:解题思路:鉴于这个题需要判断的次数太多,我们优先考虑switch 语句,所以函数分开写来判断利润的大小来返回值!注意事项:参考代码:#include<stdio.h>int f(double prof…… 题解列表 2020年08月18日 0 点赞 0 评论 279 浏览 评分:0.0
傻瓜级实现,小学生都会算 摘要:```c #include double fun(double x){ //a、b、c、d、e、f分别是每个区间获得的提成 double a,b,c,d,e,f; if(x …… 题解列表 2020年05月19日 0 点赞 0 评论 433 浏览 评分:0.0