Advertisement
AlexG2230954

Untitled

Jul 19th, 2022
1,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. class HelloWorld
  5. {
  6.     static void Main()
  7.     {
  8.         int n, m;
  9.        
  10.         n = Convert.ToInt32(Console.ReadLine());
  11.         m = Convert.ToInt32(Console.ReadLine());
  12.        
  13.         for(int i = 0; i <= n; i++)
  14.         {
  15.             for(int j = 0; j <= m; j++)
  16.             {
  17.                 if(i == 0 || j == 0 || i == n || j == m)
  18.                 {
  19.                     Console.Write("*");
  20.                 }
  21.                 else
  22.                 {
  23.                     Console.Write(" ");
  24.                 }
  25.             }
  26.             Console.WriteLine();
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement