[ create a new paste ] login | about

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

C, pasted on Nov 21:
#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
	{
		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++)
		{
			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++)
		{
			printf("%4d", a[i][j]);
		}
		printf("\n\n");
	}
}
/*
Đặt a = 0101, b = 0011
a = a ^ b = 0110
Lúc này a = 0110, b = 0011
b = b ^ a = 0101 = a 
Lúc này a = 0110, b = 0101
a = a ^ b = 0011 = b 
*/
void HoanVi(int &a, int &b)
{
	a = a ^ b;
	b = a ^ b;
	a = a ^ b;
}

void SapXepPhanTuTren1CotGiamDanTuTrenXuongDuoi(int a[][MAX], int dong, int cot, int y)
{
	for(int i = 0; i < dong - 1; i++)
	{
		for(int j = i + 1; j < dong; j++)
		{
			if(a[i][y] < a[j][y])
			{
				HoanVi(a[i][y], a[j][y]);
			}
		}
	}
}
int main()
{
	int a[MAX][MAX], dong, cot, y;
	NhapMang(a, dong, cot);
	XuatMang(a, dong, cot);

	do{
		printf("\nNhap cot muon sap xep: ");
		scanf("%d", &y);
		if(y < 0 || y > cot - 1)
		{
			printf("\nSo phan tu khong hop le. Xin kiem tra lai!");
		}
	}while(y < 0 || y > cot - 1);

	SapXepPhanTuTren1CotGiamDanTuTrenXuongDuoi(a, dong, cot, y);
	printf("\nMa tran sau khi sap xep: \n");
	XuatMang(a, dong, cot);

	getch();
	return 0;
}


Output:
1
2
3
4
5
6
7
8
9
10
Line 17: error: conio.h: No such file or directory
Line 5: error: expected ';', ',' or ')' before '&' token
In function 'XuatMang':
Line 46: error: 'for' loop initial declaration used outside C99 mode
Line 48: error: 'for' loop initial declaration used outside C99 mode
t.c: At top level:
Line 63: error: expected ';', ',' or ')' before '&' token
In function 'SapXepPhanTuTren1CotGiamDanTuTrenXuongDuoi':
Line 72: error: 'for' loop initial declaration used outside C99 mode
Line 74: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments: