Skip to content

Latest commit

 

History

History
131 lines (97 loc) · 1.52 KB

SampleMarkDownFile.md

File metadata and controls

131 lines (97 loc) · 1.52 KB

Element Markdown Syntax

Heading

Header 1

Header 2

Header 3


Bold bold text


Italic italicized text


Blockquote

blockquote

2.blockquote

3.blockquote

  1. first step
  2. second step
  3. third step

The world is flat round. (~~ ... ~~)


Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • First item
  • Second item
  • Third item
  • First
  • Second
  • Third
  • First
  • Second
  • Third
  • First
  • Second
  • Third

CheckedList

  • Write the press release
  • Update the website
  • Contact the media

Code code


ABCDEFGHI Header


Link title google


Image alt text


Image alt text


Syntax Description
Header Title
Paragraph Text

when(). 
then. 
given();

{
"firstName": "John",
"lastName": "Smith",
"age": 25
}

package Intro;

public class _09_multiDimensArrayBasic {
    public static void main(String[] args) {

        String[][] cities = new String[2][2];
        cities[0][0] = "İstanbul";
        cities[0][1] = "Bursa";
        cities[1][0] = "Ankara";
        cities[1][1] = "Konya";
        cities[2][0] = "Diyarbakır";

        for(int i=0 ; i<2 ; i++ ){
            System.out.println("----------------");
            for (int j=0; j<3 ; j++){
                System.out.println(cities[i][j]);
            }
        }
    }
}

term : definition