Output "Izumi Oishi" with dokojava

Introduction

This article is a participation article in "Izumi Oishi" Advent Calendar 2019. This time, I will introduce how to output "Izumi Oishi" using dokojava, which even P (producer) who has no programming experience can easily experience programming. The author himself has little development experience, so please point out any incorrect descriptions.

What is dokojava

"Dokojava" is a development environment that allows you to execute code written in the Java language on a browser.

How to use

code

After writing the code, click the ">>" button at the bottom right of the screen.

コード.PNG

compile

If there are no errors or warnings in the compilation results, click the "▶" button at the bottom right of the screen.

コンパイル.PNG

Run

The contents described in the code are displayed on the execution result screen.

実行結果.PNG

Output "Oishi Izumi Suki"

Write the following code on the code screen.

Main.java


public class Main {
	public static void main(String[] args) {
		System.out.println("Izumi Oishi");
	}
}

When you compile and execute the written code, "Izumi Oishi" is output.

大石泉すき.PNG

If you have a good understanding of P, you may have noticed that you can output "Oishi Izumi Suki" by rewriting "hello, world!" To "Oishi Izumi Suki".

in conclusion

So far, we have introduced how to easily output "Oishi Izumi Suki". I registered for participation on December 8th, but I am sorry that it was one day late. We hope that you will read this article and feel free to output "Izumi Oishi".

Recommended Posts

Output "Izumi Oishi" with dokojava
Output FizzBuzz with stream
Output multiplication table with Stream
Control log output with Doma2
Output Excel with formulas with XlsMapper
Output characters like conversation with JavaFX
Output test coverage with clover + gradle
Output PDF and TIFF with Java 8