使用位运算符将两个整数相乘

编程入门 行业动态 更新时间:2024-10-24 06:28:08
本文介绍了使用位运算符将两个整数相乘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何使用按位运算符将两个整数相乘?

How can I multipy two integers using bitwise operators?

我在此处找到了一个实现.有没有更好的实现乘法的方法?

I found an implementation here. Is there a better way of implementing multiplication?

例如:2 * 6 = 12必须使用按位运算符执行.

For example: 2 * 6 = 12 must be performed using bitwise operators.

注意:数字是任意的,而不是2的幂

推荐答案

#include <stdio.h> int main(void) { int a, b, result; printf("Enter the numbers to be multiplied:"); scanf("%d%d", &a, &b); // a > b result = 0; while (b != 0) // Iterate the loop till b == 0 { if (b & 1) // Bitwise & of the value of b with 1 { result = result + a; // Add a to result if b is odd . } a <<= 1; // Left shifting the value contained in 'a' by 1 // Multiplies a by 2 for each loop b >>= 1; // Right shifting the value contained in 'b' by 1. } printf("Result: %d\n",result); }

来源

更多推荐

使用位运算符将两个整数相乘

本文发布于:2023-11-30 01:31:21,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1648272.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:整数   运算符   两个

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!