[ create a new paste ] login | about

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

C, pasted on Nov 25:
#include<stdio.h>
#include<conio.h>
#include<math.h>
#define MAX 100
void NhapMaTran(int a[][MAX], int &n)
{
	do
	{
		printf("\nNhap n: ");
		scanf("%d", &n);
		if(n < 1 || n > MAX)
		{
			printf("\nSo phan tu khong hop le. Xin kiem tra lai !");
		}
	}while(n < 1 || n > MAX);

	for(int i = 0; i < n; i++)
	{
		for(int j = 0; j < n; j++)
		{
			printf("\nNhap vao a[%d][%d] = ", i, j);
			scanf("%d", &a[i][j]);
		}
	}
}

void XuatMaTran(int a[][MAX], int n)
{
	for(int i = 0; i < n; i++)
	{
		for(int j = 0; j < n; j++)
		{
			printf("%4d",a[i][j]);
		}
		printf("\n\n");
	}
}
int TinhTongCacPhanTuTamGiacTrenDuongCheoChinh(int a[][MAX], int n)
{
	int tong = 0;
	for(int i = 0; i < n - 1; i++)
	{
		for(int j = i + 1; j < n; j++)
		{
			tong += a[i][j];
		}
	}
	return tong;
}

int TinhTongCacPhanTuTamGiacTrenDuongCheoPhu(int a[][MAX], int n)
{
	int tong = 0;
	for(int i = 0; i < n - 1; i++)
	{
		for(int j = 0; j < n - 1 - i; j++)
		{
			tong += a[i][j];
		}
	}
	return tong;
}
int main()
{
	int a[MAX][MAX], n;
	NhapMaTran(a,n);
	XuatMaTran(a,n);

	int tong = TinhTongCacPhanTuTamGiacTrenDuongCheoChinh(a, n);
	printf("\nTong cac phan tu tam giac tren duong cheo chinh = %d", tong);

	int tong2 = TinhTongCacPhanTuTamGiacTrenDuongCheoPhu(a, n);
	printf("\nTong cac phan tu tam giac tren duong cheo phu = %d", tong2);

	getch();
	return 0;
}


Output:
1
2
3
4
5
6
7
8
9
10
11
Line 17: error: conio.h: No such file or directory
Line 5: error: expected ';', ',' or ')' before '&' token
In function 'XuatMaTran':
Line 29: error: 'for' loop initial declaration used outside C99 mode
Line 31: error: 'for' loop initial declaration used outside C99 mode
In function 'TinhTongCacPhanTuTamGiacTrenDuongCheoChinh':
Line 41: error: 'for' loop initial declaration used outside C99 mode
Line 43: error: 'for' loop initial declaration used outside C99 mode
In function 'TinhTongCacPhanTuTamGiacTrenDuongCheoPhu':
Line 54: error: 'for' loop initial declaration used outside C99 mode
Line 56: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments: