外出旅游-题解(Java代码)循环做法 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; …… 题解列表 2021年01月16日 0 点赞 0 评论 456 浏览 评分:9.9
外出旅游(超详细容易理解版) 摘要:解题思路:看如下代码的注释注意事项:我都写的那么详细了不给个5星好评?参考代码:#include<stdio.h>int main(){ int a,b,c,d; int i; …… 题解列表 2022年11月08日 0 点赞 0 评论 243 浏览 评分:9.9
外出旅游-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc=new Scanner(System.in); int f=sc.nextInt(); int m=sc.next…… 题解列表 2021年01月13日 0 点赞 0 评论 246 浏览 评分:9.9
外出旅游-题解(C++代码) 摘要:题目是佳佳带着f个水果和m元钱出去玩,每天房屋的租金为x元,佳佳每天早上必须吃一个水果,佳佳通过询问商店的服务人员。 得到了水果的价格,每个水果售卖p元。请你计算一下佳佳最多可以在外面待多长时间? …… 题解列表 2020年02月08日 0 点赞 0 评论 601 浏览 评分:9.2
外出旅游 (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 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 评论 441 浏览 评分:6.0
1971: 外出旅游(C语言) 摘要:解题思路:方便理解,循环处理注意事项:参考代码:#include <stdio.h> int main() { int f; // 水果数 int m; …… 题解列表 2021年06月12日 0 点赞 0 评论 199 浏览 评分:4.7
外出旅游-题解(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 a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); …… 题解列表 2019年12月13日 0 点赞 0 评论 854 浏览 评分:0.0