This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| struct llist_node | |
| { | |
| int value; | |
| struct llist_node* next; | |
| }; | |
| int filter(int); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.3.14-fpm-alpine3.11 | |
| LABEL maintainer="mail@leequixxx.space" | |
| RUN apk add --update libzip-dev curl-dev icu-dev postgresql-dev && \ | |
| docker-php-ext-install curl zip intl pdo pdo_pgsql && \ | |
| apk del gcc g++ && \ | |
| rm -rf /var/cache/apk/* | |
| RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program task14; | |
| {$IFDEF FPC} | |
| {$MODE DELPHI} | |
| {$ENDIF} | |
| type TSex = (male, female); | |
| type TMan = class(TObject) | |
| private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program task1; | |
| {$IFDEF FPC} | |
| {$MODE DELPHI} | |
| {$ENDIF} | |
| uses | |
| SysUtils; | |
| var Count: integer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program task1; | |
| {$IFDEF FPC} | |
| {$MODE DELPHI} | |
| {$ENDIF} | |
| uses | |
| SysUtils, | |
| StrUtils; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program Project1; | |
| {$MODE DELPHI} | |
| uses | |
| SysUtils; | |
| Type | |
| TStringArray = Array of String; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program Project1; | |
| {$MODE DELPHI} | |
| uses | |
| SysUtils; | |
| const STOP_CHARACTER = 's'; | |
| var count: Integer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program task3213; | |
| {$MODE DELPHI} | |
| uses SysUtils; | |
| const DEPOSIT: real = 1000; | |
| const WITHDRAW: real = 1100; | |
| var Percents: real; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program task329; | |
| {$MODE DELPHI} | |
| uses SysUtils; | |
| var Numbers: array of integer; | |
| var Index: integer; | |
| var Count: integer; |