001-005-013
Bitwise AND
Easy
Problem Description
Bitwise AND
Learning Objective: Understand the basics of bitwise and
Overview
Implement bitwise and and display the result.
Output Format
Result: 8
Test Cases
※ Output examples follow programming industry standards
Input:
Expected Output:
Result: 8
Input:
Expected Output:
Result: 8
Input:
Expected Output:
Result: 8
Input:
Expected Output:
Result: 8
❌ Some tests failed
Your Solution
Current Mode:● My Code
99
1
2
3
4
5
6
7
8
9
10
›
⌄
⌄
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// Write your code here
sc.close();
}
}
0 B / 5 MB
You have 6 free executions remaining
