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
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