Bài 339: Đếm số lượng số hoàn thiện trên 1 hàng trong ma trận các số nguyên
#include<stdio.h>
#include<conio.h>
#include<math.h>
#define MAX 100
void NhapMang(int a[][MAX], int &dong, int &cot)
{
//Nhập số dòng
do
{
printf("\nNhap vao so dong: ");
// Cách tà đạo: scanf("dong =%d",&dong); // Lúc nhập phải viết thêm chữ ( dong = ) ở khung console
scanf("%d",&dong);
if(dong < 1 || dong > MAX)
{
printf("\nSo dong khong hop le Xin kiem tra lai!");
}
}while(dong < 1 || dong > MAX);
//Nhập số cột
do
{
Trang 2printf("\nNhap vao so cot: ");
scanf("%d",&cot);
if(cot < 1 || cot > MAX)
{
printf("\nSo cot khong hop le Xin kiem tra lai!");
}
}while(cot < 1 || cot > MAX);
for(int i = 0; i < dong; i++)
{
for(int j = 0; j < cot; j++)
{
printf("\nNhap a[%d][%d] = ", i, j);
scanf("%d", &a[i][j]);
}
}
}
void XuatMang(int a[][MAX], int dong, int cot)
{
for(int i = 0; i < dong; i++)
{
for(int j = 0; j < cot; j++)
{
Trang 3printf("%4d", a[i][j]);
}
printf("\n\n");
}
}
int KiemTraHoanThien(int n)
{
int tong = 0;
for(int i = 1; i < n; i++)
{
if(n % i == 0)
{
tong += i;
}
}
if(tong == n)
{
return 1;
}
return 0;
}
int DemSoLuongSoHoanThienTren1Hang(int a[][MAX], int x, int cot)
{
int dem = 0;
for(int j = 0; j < cot; j++)
Trang 4if(KiemTraHoanThien(a[x][j]) == 1)
{
dem++;
}
}
return dem;
}
int main()
{
int a[MAX][MAX], dong, cot;
NhapMang(a, dong, cot);
XuatMang(a, dong, cot);
int x;
do{
printf("\nNhap vao dong x can dem: ");
scanf("%d", &x);
if(x < 0 || x > dong - 1)
{
printf("\nChi so dong x khong hop le Xin kiem tra lai !");
}
}while(x < 0 || x > dong - 1);
int dem = DemSoLuongSoHoanThienTren1Hang(a, x, cot);
printf("\nSo luong so hoan thien tren dong %d = %d", x, dem);
Trang 5return 0;
}