外出旅游 (C语言代码) 摘要:解题思路:看见没人写,自己有困了很久才写对。就发出来参考一下注意事项:参考代码:#include<stdio.h>int main(){ int f,m,x,p,b; scanf("%d %d …… 题解列表 2019年03月09日 0 点赞 0 评论 532 浏览 评分:0.0
外出旅游 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 假设,最多在外面待n天 n*x + (n-f)*p <= m n <= (m+f*p)/(x+p) 但是这一公式成立的前提是 n>f 如果 佳佳 带…… 题解列表 2019年03月22日 0 点赞 0 评论 918 浏览 评分:8.0
外出旅游-题解(C语言代码) 摘要: #include int main() { int f,m,x,p,i;//f水果的个数,m所带的钱,x房子的租金,p水果的价格,i在外面的天数 …… 题解列表 2019年06月22日 0 点赞 0 评论 624 浏览 评分:6.7
外出旅游-题解(C语言代码) 摘要:#include int main() { int i,f,m,x,p,a,day=0; scanf("%d %d %d %d",&f,&m,&x,&p); a=m-f*…… 题解列表 2019年07月03日 0 点赞 0 评论 442 浏览 评分:6.0
外出旅游-题解(C语言代码) 摘要: #include int main() { int f,x,m,p,q,sum; scanf("%d%d%d%d",&f,&m,&x,&p)…… 题解列表 2019年08月06日 0 点赞 0 评论 599 浏览 评分:0.0
外出旅游-题解(C语言代码) 摘要:就是应用题做法,设天数为i,当总金额大于m时,天数i-1是最大外出时间。```c #include #define MAX(x,y) (x>=y?x:y) int main() { …… 题解列表 2019年08月25日 0 点赞 0 评论 539 浏览 评分:0.0
外出旅游-题解(Java代码) 摘要: 代码如下: ```java Scanner sc=new Scanner(System.in); int f=sc.nextInt(); //水果数 …… 题解列表 2019年11月25日 0 点赞 0 评论 462 浏览 评分:0.0
外出旅游-题解(C语言代码) 摘要: #include int main() { int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); …… 题解列表 2019年12月13日 0 点赞 0 评论 861 浏览 评分:0.0
外出旅游-题解(C++代码) 摘要:题目是佳佳带着f个水果和m元钱出去玩,每天房屋的租金为x元,佳佳每天早上必须吃一个水果,佳佳通过询问商店的服务人员。 得到了水果的价格,每个水果售卖p元。请你计算一下佳佳最多可以在外面待多长时间? …… 题解列表 2020年02月08日 0 点赞 0 评论 604 浏览 评分:9.2
外出旅游-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc=new Scanner(System.in); int f=sc.nextInt(); int m=sc.next…… 题解列表 2021年01月13日 0 点赞 0 评论 246 浏览 评分:9.9