001-001-013

Character Declaration

Easy

Problem Description

Character Declaration

Learning Objective: Understand the basics of character declaration

Overview

Implement character declaration and display the result.

Output Format

Letter: A

Test Cases

※ Output examples follow programming industry standards

Input:
Expected Output:
Letter: A
Input:
Expected Output:
Letter: A
Input:
Expected Output:
Letter: A
Input:
Expected Output:
Letter: A
❌ 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