题解 2772: 苹果和虫子

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

筛选

苹果和虫子

摘要:#include<iostream>using namespace std;int main(){ int n,z,k; double x,y,a; cin>>n>>x>>y; a=y/x; k=0;……

题解 2772: 苹果和虫子

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

ikun崩溃代码

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

不废话直接秒

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

Java 用if简单版本

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args) { ……

ceil和类型转换解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n,x,y;    double m;    scanf("%d%……

解法有很多,多思考进步才会大

摘要:解题思路:注意事项:参考代码: int n,x,y,s,c;   scanf("%d %d %d",&n,&x,&y);   //如果经过y时间%吃一个苹果所需时间x==0  //证明说经过的时间刚好……