fork download
  1. using System;
  2.  
  3. namespace DrawASCIIRectangle
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Func<int,Func<int,string>> d= w=>h=>{var s="";for(int i=0;i<h;)s+="|"+new String(1>i++%(h-1)?'-':' ',w-2)+"|\n";return s;};
  10. Console.WriteLine(d(3)(3));
  11. Console.WriteLine(d(5)(8));
  12. Console.WriteLine(d(10)(3));
  13. }
  14. }
  15. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
|-|
| |
|-|

|---|
|   |
|   |
|   |
|   |
|   |
|   |
|---|

|--------|
|        |
|--------|