сохранение 1

This commit is contained in:
mariaandreeva.2007 2024-10-29 23:20:35 +03:00
parent f53171640c
commit b4f9e28164

View File

@ -153,6 +153,14 @@ void logo4(HDC hdc) {
x += 130; x += 130;
} while (y < 400, x < 800); } while (y < 400, x < 800);
} }
void logo5(HDC hdc) {
int y = 0, x = 0;
do {
logo(hdc, x, y);
y += 60;
x += 130;
} while (y < 400, x < 800);
}
// //
// ЦЕЛЬ: Обрабатывает сообщения в главном окне. // ЦЕЛЬ: Обрабатывает сообщения в главном окне.