求俩数的平均值(不用公式)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求俩数的平均值(不用公式)相关的知识,希望对你有一定的参考价值。
//求两个数平均值的方法:Avg = (ValueA & ValueB) + (ValueA ^ ValueB) >>1 #include <stdio.h> int bit(int x, int y) { return (x & y) + ((x ^ y) >> 1); } int main() { int a = 0; int b = 0; int ret; printf("请输入俩数:\n"); scanf("%d %d", &a, &b); ret = bit(a, b); printf("%d\n", ret); return 0; }
以上是关于求俩数的平均值(不用公式)的主要内容,如果未能解决你的问题,请参考以下文章
简单调和平均数公式 加权调和平均数公式 众数,中位数的典型计算