Element Markdown Syntax
Heading
Bold bold text
Italic italicized text
Blockquote
blockquote
2.blockquote
3.blockquote
- first step
- second step
- third step
The world is flat round. (~~ ... ~~)
Ordered List
- First item
- Second item
- 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
Link title google
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