Difference between revisions of "Formatting"
From berki WIKI
(→Boxes) |
|||
Line 3: | Line 3: | ||
= Boxes = | = Boxes = | ||
+ | |||
+ | {{warning|....text...}} | ||
<pre> | <pre> | ||
{{warning|..text...}} | {{warning|..text...}} | ||
</pre> | </pre> | ||
− | |||
+ | {{note|....text...}} | ||
<pre> | <pre> | ||
{{note|..text...}} | {{note|..text...}} | ||
</pre> | </pre> | ||
− | |||
+ | |||
+ | {{tip|....text...}} | ||
<pre> | <pre> | ||
{{tip|..text...}} | {{tip|..text...}} | ||
</pre> | </pre> | ||
− | |||
Line 29: | Line 31: | ||
} | } | ||
</source> | </source> | ||
− | + | <pre> | |
− | + | <source lang="java"> | |
− | + | ... code .. | |
+ | </source> | ||
+ | </pre> | ||
= Text formatting = | = Text formatting = |
Revision as of 18:00, 8 September 2016
Boxes
Warning
....text...
{{warning|..text...}}
Note
....text...
{{note|..text...}}
Tip
....text...
{{tip|..text...}}
class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}
}
<source lang="java"> ... code .. </source>