Untitled

 avatar
unknown
c_cpp
a year ago
386 B
3
Indexable
#include <iostream>
#include <math.h>
using namespace std;

int main() {
	int W, H;

	cin >> W >> H;

	for (int i = 0; i < H; i++) {
		cout << "#";
	}
	cout << "\n";

	for (int w = 0; w < W - 2; w++) {
		cout << "#";
		for (int h = 0; h < H - 2; h++) {
			cout << " ";
		}
		cout << "#";
		cout << "\n";
	}
	for (int i = 0; i < H; i++) {
		cout << "#";
	}
}

Editor is loading...