列表

详情


BC26. 计算带余除法

描述

给定两个整数a和b (0 < a,b < 10,000),计算a除以b的整数商和余数。

输入描述

一行,包括两个整数a和b,依次为被除数和除数(不为零),中间用空格隔开。

输出描述

一行,包含两个整数,依次为整数商和余数,中间用一个空格隔开。

示例1

输入:

15 2

输出:

7 1

原站题解

C 解法, 执行用时: 1ms, 内存消耗: 256KB, 提交时间: 2020-12-06

#include <stdio.h>
int main() 
{
    int a = 0, b = 0;
    scanf("%d %d", &a, &b);
    printf("%d %d\n", a / b, a % b);
    return 0;
}

C 解法, 执行用时: 1ms, 内存消耗: 256KB, 提交时间: 2020-12-06

int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d %d",a/b,a%b);
    return 0;
}

C 解法, 执行用时: 1ms, 内存消耗: 256KB, 提交时间: 2020-11-23

#include<stdio.h>
int main()
{
    int a,b;
   scanf("%d%d%d",&a,&b);
    int m=a/b;
    int n=a%b;
    printf("%d %d",m,n);
    return 0;
}

C 解法, 执行用时: 1ms, 内存消耗: 264KB, 提交时间: 2020-12-06

int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d %d",a/b,a%b);
    return 0;
}

C 解法, 执行用时: 1ms, 内存消耗: 276KB, 提交时间: 2020-12-07

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d %d",a/b,a%b);
    return 0;
}

上一题