外出旅游-题解(Java代码) 摘要: 代码如下: ```java Scanner sc=new Scanner(System.in); int f=sc.nextInt(); //水果数 …… 题解列表 2019年11月25日 0 点赞 0 评论 454 浏览 评分: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
外出旅游-题解(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语言代码) 摘要:#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,m,x,p,i;//f水果的个数,m所带的钱,x房子的租金,p水果的价格,i在外面的天数 …… 题解列表 2019年06月22日 0 点赞 0 评论 624 浏览 评分:6.7
外出旅游 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 假设,最多在外面待n天 n*x + (n-f)*p <= m n <= (m+f*p)/(x+p) 但是这一公式成立的前提是 n>f 如果 佳佳 带…… 题解列表 2019年03月22日 0 点赞 0 评论 917 浏览 评分:8.0
外出旅游 (C语言代码) 摘要:解题思路:看见没人写,自己有困了很久才写对。就发出来参考一下注意事项:参考代码:#include<stdio.h>int main(){ int f,m,x,p,b; scanf("%d %d …… 题解列表 2019年03月09日 0 点赞 0 评论 532 浏览 评分:0.0