001-002-012

Addition Assignment

Easy

Problem Description

Addition Assignment

Learning Objective: Understand the basics of addition assignment

Overview

Implement addition assignment 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