forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request TheAlgorithms#366 from Rachana040/master
Updated Matrix.java, added Transpose of a Matrix
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import java.util.Scanner; | ||
|
||
/** | ||
*A utility to check if a given number is power of two or not. | ||
*For example 8,16 etc. | ||
*/ | ||
public class PowerOfTwoOrNot { | ||
|
||
public static void main (String[] args) { | ||
|
||
Scanner sc = new Scanner(System.in); | ||
System.out.println("Enter the number"); | ||
int num = sc.nextInt(); | ||
boolean isPowerOfTwo = checkIfPowerOfTwoOrNot(num); | ||
if (isPowerOfTwo) { | ||
System.out.println("Number is a power of two"); | ||
} else { | ||
System.out.println("Number is not a power of two"); | ||
} | ||
} | ||
|
||
|
||
/** | ||
* Checks whether given number is power of two or not. | ||
* | ||
* @param number | ||
* @return boolean | ||
*/ | ||
public static boolean checkIfPowerOfTwoOrNot(int number) { | ||
return number != 0 && ((number & (number-1)) == 0); | ||
} | ||
|
||
} |