Problem Solution Template: Difference between revisions
Jump to navigation
Jump to search
imported>Rubens No edit summary |
imported>Rubens No edit summary |
||
| Line 10: | Line 10: | ||
<code> Hello word! </code> | <code> Hello word! </code> | ||
function <code>int m2()</code> is nice | |||
1 #include <stdio.h> | |||
2 | |||
3 '''int''' main() | |||
4 { | |||
5 printf ("Hello Word!"); | |||
6 '''return''' 0; | |||
7 } | |||
=== Super Epic Fails === | === Super Epic Fails === | ||
=== ICPC Problems=== | === ICPC Problems=== | ||
Revision as of 01:32, 11 November 2014
Problem Solution Template
Tags
Difficulty
How to
Sample Solution - *Language X*
Hello word!
function int m2() is nice
1 #include <stdio.h>
2
3 int main()
4 {
5 printf ("Hello Word!");
6 return 0;
7 }