WY69. 访友
描述
输入描述
一行包含一个数字x(1 <= x <= 1000000),代表朋友家的位置。输出描述
一个整数,最少的步数。示例1
输入:
4
输出:
1
示例2
输入:
10
输出:
2
C 解法, 执行用时: 1ms, 内存消耗: 256KB, 提交时间: 2020-07-07
#include <stdio.h> int main(){ int n; int bushu; int cc; scanf("%d",&n); bushu = n/5; cc = n%5; if(cc == 0){ printf("%d",bushu); }else{ printf("%d",bushu+1); } return 0; }
C 解法, 执行用时: 1ms, 内存消耗: 368KB, 提交时间: 2020-08-14
#include<stdio.h> int main() { int x; scanf("%d",&x);; if(x%5==0) printf("%d\n",x/5); else printf("%d\n",x/5+1); return 0; }