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 <iostream> | |
using namespace std; | |
int main() { | |
string str="15?+15?=30?", | |
str_cpu=str; | |
int flag=0; | |
int question='?'-'0'; | |
int a=0,b=0,c=0,d=0; | |
int posPlus=-1, | |
posEq=-1; |
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 <iostream> | |
using namespace std; | |
long long gcd(long long a, long long b){ | |
long long r; | |
while (b != 0){ | |
r = a%b; a = b; b = r; | |
} |
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 <windows.h> | |
#include <mmsystem.h> | |
#include <stdio.h> | |
#pragma comment(lib, "winmm.lib") | |
#pragma comment(lib, "user32.lib") | |
const int nRate = 44100; | |
const int nBits = 16; |
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
Тест 1: | |
Какие службы относятся к телематическим? | |
-телеграфные службы | |
+факсимильные службы | |
+информационные службы | |
-службы передачи данных | |
Территорией предоставления услуг ТМ службы оператора связи называется | |
+территория расположения множества точек доступа к ТМ службе, в которых оператор связи обеспечивает предоставление услуг этой ТМ службы пользователям | |
-помещение оператора связи |
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
1 Отличия локальных и глобальных сетей передачи данных (кроме очевидного отличим в | |
размерах)? | |
Основными отличительными признаками локальных сетей от глобальных выступают следующие: | |
• степень оперативности обработки запросов; | |
• скорость обмена и транспортировки данных; | |
• масштабируемость; | |
• уровень сложности схемы передачи данных; | |
• механизмы прокладки связных линий и их протяженность; | |
• разнообразность услуг. | |
Прежде всего, протяженность и качество линий связи. Локальные компьютерные сети по |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>PHP Калькулятор</title> | |
</head> | |
<body> | |
<center> | |
<?php | |
$one = $_POST['one']; | |
$two = $_POST['two']; |
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
/* | |
* Displays text sent over the serial port (e.g. from the Serial Monitor) on | |
* an attached LCD. | |
* YWROBOT | |
*Compatible with the Arduino IDE 1.0 | |
*Library version:1.1 | |
*/ | |
#include <Wire.h> | |
#include <math.h> | |
#include <LiquidCrystal_I2C.h> |
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
Андреев | |
Бороздин | |
Вдовина | |
Гордейчик | |
Дубовик | |
Заварзин | |
Кожевятов | |
Корольков | |
Логутова | |
Морозов |
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
2) Телематические службы | |
Телематические службы (ТМ службы) - службы электросвязи, за исключением телефонной, телеграфной служб и службы передачи данных, предназначенные для передачи информации через сети электросвязи. | |
Примерами ТМ служб являются: факсимильные службы, службы электронных сообщений, службы голосовых сообщений, службы аудио/видеоконференции, а также службы доступа к информации, хранящейся в электронном виде. | |
-1)факсимильные службы: | |
*ТЕЛЕФАКС; | |
*КОМФАКС; | |
*БЮРОФАКС; | |
-2)службы обмена электронными сообщениями: | |
*службы обработки сообщений; | |
*службы электронной почты; |
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
var HpCurrent; | |
var HpMax; | |
var healcoeff; | |
var timeFight; | |
var timeRat; | |
var timePatrol; | |
var currentLevel; | |
var fightLevel=9; | |
var fightFlag=0; |
OlderNewer