首页 > 其他 > 详细

求商求模运算

时间:2014-08-03 18:02:25      阅读:290      评论:0      收藏:0      [点我收藏+]

这两种运算总是感觉有点迷糊,现在 拨开乌云见天日。

对于整型数a,b来说,取模运算或者求余运算的方法都是:

1.求 整数商: c = a/b;

2.计算模或者余数: r = a - c*b.

#include <iostream>

using namespace std;


void div(){
	printf("5/3: %d",5/3);cout << endl;
	printf("5/(-3): %d",5/-3);cout << endl;
	printf("(-3)/8: %d",-3/5);cout << endl;
	printf("3/(-8): %d",3/-5);cout << endl;
}

void mod(){
	printf("5取模3: %d",5%3);cout << endl;
	printf("5取模-3: %d",5%-3);cout << endl;
	printf("-3取模5: %d",-3%5);cout << endl;
	printf("3取模-5: %d",3%-5);cout << endl;
}

void main(){
	cout<<"求商运算"<<endl;
	div();
	cout<<endl;
	cout<<"求模运算"<<endl;
	mod();
}

运算结果:

bubuko.com,布布扣

求商求模运算,布布扣,bubuko.com

求商求模运算

原文:http://blog.csdn.net/buyingfei8888/article/details/38359151

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!