Skip to content

Instantly share code, notes, and snippets.

View sickomodeeeee's full-sized avatar

sickomodeeeee

View GitHub Profile
@sickomodeeeee
sickomodeeeee / gist:1c24961104a32a9f25b497cd61820f86
Created October 9, 2025 14:55
Лабораторная №4
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(home: MyWidget()));
}
class MyWidget extends StatefulWidget {
const MyWidget({super.key});
@override
@sickomodeeeee
sickomodeeeee / gist:2ca278a8085aae990d1cd0d00092e1c9
Created October 9, 2025 14:45
Лабораторная №2
Задача 1
void main() {
int num = 16;
//int num = 8;
//int num = 11;
//int num = 172;
if (num % 2 == 0) {
print('$num - чётное число');
} else {