LoginSignup
2

More than 3 years have passed since last update.

Qiitaの書き方まとめ

Posted at

見出し

▼書き方

・「#」で見出しとして表示させる。
・個数によって大きさも変わる。

#見出し1
##見出し2
###見出し3

▼例

見出し1

見出し2

見出し3

▼ソースコードの挿入

▼書き方
```Java:HelloWorld.java
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World!!");
}
}

```

▼例

HelloWorld.java
public class HelloWorld{
    public static void main(String[] args){
        System.out.println("Hello World!!");
    }
}

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2