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.
"Dokojava" is a development environment that allows you to execute code written in the Java language on a browser.
After writing the code, click the ">>" button at the bottom right of the screen.
If there are no errors or warnings in the compilation results, click the "▶" button at the bottom right of the screen.
The contents described in the code are displayed on the execution result screen.
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.
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".
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