Difference between revisions of "Formatting"
From berki WIKI
Line 20: | Line 20: | ||
− | < | + | <source lang="java"> |
class ForDemo { | class ForDemo { | ||
public static void main(String[] args){ | public static void main(String[] args){ | ||
Line 28: | Line 28: | ||
} | } | ||
} | } | ||
− | </ | + | </source> |
Revision as of 17:59, 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);
}
}
}