UlSTU_Labs/UlSTU_Console/UlSTU_Console.cpp

47 lines
1.1 KiB
C++
Raw Normal View History

2024-11-01 16:21:33 +04:00
#include <stdio.h>
#include <windows.h>
2024-11-01 16:20:35 +04:00
2024-11-01 16:21:33 +04:00
void aboutme() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
2024-11-01 16:20:35 +04:00
2024-11-01 16:21:33 +04:00
printf("Дмитриев\n");
printf("Максим \n");
printf("Александрович\n");
printf("\nГруппа: пибд-14");
printf("\nДата: 04.09.2024");
printf("\nПредмет: основы программирования");
printf("\nЛабораторная работа №1\n");
2024-11-01 16:20:35 +04:00
}
2024-11-01 16:21:33 +04:00
void name1() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
printf("\nЛабораторная работа №1");
printf("\nПредмет: основы программирования");
printf("\nДата: 04.09.2024");
printf("\nГруппа: пибд-14\n");
printf("\nАлександрович\n");
printf("Максим\n");
printf("Дмитриев\n");
}
void pic() {
printf(" ___ \n");
printf(" /> >\n");
printf(" | _ _ |\n");
printf(" /` x /\n");
printf(" / |\n");
printf(" / |\n");
printf(" __ | | | |\n");
printf("/ _| | | |\n");
printf("| ( \\__\\ _)__)\n");
}
2024-11-01 16:20:35 +04:00
2024-11-01 16:21:33 +04:00
void main() {
//printf("Hello world!");
aboutme();
//name1();
//pic();
}