题解 2772: 苹果和虫子

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

筛选

苹果和虫子(超简单)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n, x, y;    cin >> n >> x >>……

苹果和虫子C语言

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

2772: 苹果和虫子

摘要:解题思路:注意事项:参考代码:import mathn, x, y = map(int,input().strip().split())print(math.floor(n - y / x))    ……

2772:苹果与虫子

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

苹果和虫子 C语言 三步搞定

摘要:解题思路:简单数学问题,公式一套ok注意事项:输入格式注意空格,输出公式即可参考代码:#include<stdio.h>int main(){    int n,x,y;    scanf("%d %……

2772: 苹果和虫子

摘要:```cpp #include using namespace std; int main() { int x,y,n; cin>>n>>x>>y; if(y%x……

用一个选择语句即可

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

ikun崩溃代码

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

2772: 苹果和虫子(Python)

摘要:解题思路:注意事项:参考代码:from decimal import * Pi=3.14159 tmp = input() n,x,y = tmp.split() n = int(n) x ……