-
Notifications
You must be signed in to change notification settings - Fork 0
/
exe_444.cpp
63 lines (55 loc) · 877 Bytes
/
exe_444.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
/*
Exe_444: Tìm giá trị nhỏ nhất trong ma trận tam giác dưới
*/
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
void Input(int a[][100], int n)
{
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
cout << "a[" << i << "][" << j << "]: ";
cin >> a[i][j];
}
}
}
void Output(int a[][100], int n)
{
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
cout << setw(4) << a[i][j] ;
}
cout << endl;
}
}
void Result(int a[][100], int n)
{
int min = a[1][0];
for(int i = 1; i < n; i++)
{
for(int j = 0; j < i; j++)
{
if(a[i][j] < min)
{
min = a[i][j];
}
}
}
cout << min;
}
int main()
{
int a[100][100];
int n;
cout << "Input n: ";
cin >> n;
Input(a, n);
Output(a, n);
Result(a, n);
return 0;
}