Difference between revisions of "Formatting"
From berki WIKI
(Created page with " = Boxes = <pre> {{warning|..text...}} </pre> {{warning|....text...}}") |
|||
Line 7: | Line 7: | ||
</pre> | </pre> | ||
{{warning|....text...}} | {{warning|....text...}} | ||
+ | |||
+ | |||
+ | <pre> | ||
+ | {{note|..text...}} | ||
+ | </pre> | ||
+ | {{note|....text...}} | ||
+ | |||
+ | <pre> | ||
+ | {{tip|..text...}} | ||
+ | </pre> | ||
+ | {{tip|....text...}} | ||
+ | |||
+ | |||
+ | <code> | ||
+ | class ForDemo { | ||
+ | public static void main(String[] args){ | ||
+ | for(int i=1; i<11; i++){ | ||
+ | System.out.println("Count is: " + i); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | = Text formatting = |
Revision as of 17:19, 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); } }
}