-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.cpp
76 lines (67 loc) · 1.21 KB
/
1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <iostream>
using namespace std;
int n,m,mat[101][101],x,y;
void f3()
{
/// Citire
cin >> n >> m;
for(int i=1;i<=m;i++)
{
cin >> x >> y;
/// trecem in matrice
mat[x][i] = mat[y][i] = 1;
}
/// Afisare
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
cout << mat[i][j] << " ";
cout << endl;
}
}
void f2()
{
/// Citire
cin >> n >> m;
for(int i=1;i<=m;i++)
{
cin >> x >> y;
/// trecem in matrice
mat[x][0]++;
mat[x][mat[x][0]] = y;
mat[y][0]++;
mat[y][mat[y][0]] = x;
}
/// Afisare
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
cout << mat[i][j] << " ";
cout << endl;
}
}
void f1()
{
/// Citire
cin >> n >> m;
for(int i=1;i<=m;i++)
{
cin >> x >> y;
/// trecem in matrice
mat[x][y] = mat[y][x] = 1;
}
/// Afisare
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
cout << mat[i][j] << " ";
cout << endl;
}
}
int main()
{
//f1();
//f2();
//f3();
return 0;
}