码迷,mamicode.com
首页 > 其他好文 > 详细

[GeeksForGeeks] Multiply a given integer by 3.5

时间:2017-07-20 10:08:15      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:on()   with   result   multi   put   and   tput   amp   oid   

Given an integer x, write a method that multiplies x with 3.5 and returns the integer result. You are not allowed to use %, /, or *.

Examples:  input 2, output 7; input 5, output 17

 

Solution. Use left shift and right shift operators.

 1 public class Solution {
 2     public int multiply3point5(int x){
 3         return (x << 1) + x + (x >> 1);
 4     }
 5     public static void main(String[] args){
 6         Solution sol = new Solution();
 7         assert sol.multiply3point5(2) == 7;
 8         assert sol.multiply3point5(5) == 17;
 9     }
10 }

 

[GeeksForGeeks] Multiply a given integer by 3.5

标签:on()   with   result   multi   put   and   tput   amp   oid   

原文地址:http://www.cnblogs.com/lz87/p/7209117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!