Преимущества электронной почты:
Электронная почта надёжнее, дешевле, медленнее обычной почты.
Возможность отправлять письмо только одному адресату.
Возможность отправлять письмо нескольким адресатам.
Электронная почта позволяет с высокой скоростью передавать изображения, документы, программы.
но у меня извиняйте ,как могу
Объяснение:
n,m=map(int,input().split())
tree=[]
count_tree=0
for i in range(m):
u,v = map(int,input().split())
not_in_tree = True
for tr in tree:
if u in tr:
if v not in tr:
tr.append(v)
count_tree +=1
not_in_tree=False
break
elif v in tr:
if u not in tr:
tr.append(u)
count_tree +=1
not_in_tree=False
break
if not_in_tree:
tree.append([u,v])
count_tree +=2
print(len(tree) + (n-count_tree))
#include <iostream>
#include <fstream>
#include <cmath>
#define n 3
signed main()
{
setlocale(LC_ALL, "Ru");
std::ifstream fRead("имя файла сюда");
int matrix[n][n];
long int _sum = 0;
if (fRead.good()) {
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
fRead >> matrix[i][j];
}
else {
std::cout << "Ошибка в открытии файла!";
return 0;
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
std::cout << matrix[i][j] << " ";
if (matrix[i][j] % 2 == 0)
_sum += pow(matrix[i][j], 2);
}
std::cout << std::endl;
}
std::cout << _sum << std::endl;
return 0;
}