题解 2772: 苹果和虫子

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

不废话直接秒

摘要:解题思路:floor函数向下取整注意事项:参考代码:importmathn,x,y=map(int,input().split())print(math.floor(n-1/x*y))……

ikun崩溃代码

摘要:解题思路:套用if函数判定小数部分舍去,不构成完整的苹果。注意事项:参考代码:#include<stdio.h>intmain(){intn,x,y,z;scanf("%d%d%……

Java 用if简单版本

摘要:解题思路:注意事项:参考代码:importjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=……

题解 2772: 苹果和虫子

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn,x,y;inta=0;scanf("%d%d%d",&n,&……

小白编程11111

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){doublex,y;intn;scanf("%d%lf%lf",&n,&am……

用一个选择语句即可

摘要:解题思路:注意事项:要考虑整个苹果没吃完的情况参考代码:#include<stdio.h>#include<math.h>intmain(){intn,x,y;scanf(&q……

苹果和虫子

摘要:#include<iostream>usingnamespacestd;intmain(){intn,z,k;doublex,y,a;cin>>n>>x>&g……

苹果与虫子题解

摘要:解题思路:无注意事项:if那里要写两个等于号哦参考代码:#include<iostream>usingnamespacestd;intmain(){&nbsp;&nbsp;……