[ create a new paste ] login | about

Link: http://codepad.org/uGIVXJAS    [ raw code | output | fork | 1 comment ]

C, pasted on Sep 16:
#include<stdio.h>
#include<conio.h>
#define MAX 100

void nhap (float a[], int &n)
{
	do
	{
		printf("\nNhap so phan tu: ");
		scanf("%d", &n);
		if(n <= 0 || n > MAX)
		{
			printf("\nSo phan tu khong hop le. Xin kiem tra lai !");
		}
	}while(n <= 0 || n > MAX);
	for(int i = 0; i < n; i++)
	{
		printf("\nNhap a[%d]: ", i);
		scanf("%f", &a[i]);
	}
}

void xuat(float a[], int n)
{
	for(int i = 0; i < n; i++)
	{
		printf("%8.3f", a[i]);
	}
}
float nhonhat(float a[], int n)
{
	float min = a[0];
	for(int i = 1; i < n; i++)
	{
		if(a[i] < min)
		{
			min = a[i];
		}
	}
	return min;
}
int main()
{
	int n;
	float a[MAX];
	nhap(a, n);
	xuat(a, n);

	float min = nhonhat(a, n);

	printf("\nPhan tu nho nhat trong mang la %.3f", min);

	getch();
	return 0;
}


Output:
1
2
3
4
5
6
Line 17: error: conio.h: No such file or directory
Line 5: error: expected ';', ',' or ')' before '&' token
In function 'xuat':
Line 25: error: 'for' loop initial declaration used outside C99 mode
In function 'nhonhat':
Line 33: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments:
posted by DUA on Mar 2
k
reply