This file contains 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>//необходимо для printf | |
#include <conio.h>//необходимо для getch | |
#include <string.h>//необходимо для puts | |
#include <clocale> | |
int main() | |
{ | |
setlocale(LC_CTYPE, "rus"); |
This file contains 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 < conio.h > | |
#include < string.h > | |
#include < stdio.h > | |
#include <clocale> | |
void main() { | |
setlocale(LC_CTYPE, "russian"); | |
char p[50], key[15]; | |
int i, n, j; |
This file contains 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
@admin.register(PatientIndicator) | |
class PatientIndicator(ExportMixin, admin.ModelAdmin): | |
list_display = ( | |
'get_patient', | |
'dyspnea', | |
'position_bed', | |
'heartbeat', | |
'stack', | |
'weight', | |
'arterial_pressure', |