[ create a new paste ] login | about

Link: http://codepad.org/GwWrSlYg    [ raw code | output | fork ]

C, pasted on Oct 30:
#include<stdio.h>
#include<conio.h>
#include<math.h>
#define MAX 100
void NhapMang(float 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
	{
		printf("\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++)
		{
			float temp;
			printf("\nNhap a[%d][%d] = ", i, j);
			scanf("%f", &temp);
			a[i][j] = temp;
		}
	}
}

void XuatMang(float a[][MAX], int dong, int cot)
{
	for(int i = 0; i < dong; i++)
	{
		for(int j = 0; j < cot; j++)
		{
			printf("%8.3f", a[i][j]);
		}
			printf("\n\n");
	}
}

int DemSoLuongSoDuongTren1Dong(float a[][MAX], int x, int cot)
{
	int dem = 0;
	for(int j = 0; j < cot; j++)
	{
		if(a[x][j] > 0)
		{
			dem++;
		}
	}
	return dem;
}
int main()
{
	float a[MAX][MAX];
	int 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 = DemSoLuongSoDuongTren1Dong(a, x, cot);
	printf("\nSo luong so duong tren 1 dong = %d", dem);
	getch();
	return 0;
}


Output:
1
2
3
4
5
6
7
Line 17: error: conio.h: No such file or directory
Line 5: error: expected ';', ',' or ')' before '&' token
In function 'XuatMang':
Line 48: error: 'for' loop initial declaration used outside C99 mode
Line 50: error: 'for' loop initial declaration used outside C99 mode
In function 'DemSoLuongSoDuongTren1Dong':
Line 61: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments: