//求两个数平均值的方法: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; }
时间: 2024-10-08 23:19:50