[ create a new paste ] login | about

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

C, pasted on Oct 3:
#include<stdio.h>
#include<conio.h>
#include<math.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 timduongdautien(float a[], int n)
{
    for (int i = 0; i < n; i++)
    {
         if (a[i] > 0)
         {
             return a[i];
         }
    }
    return -1;
}
float timgiatriduongnhonhat(float a[], int n)
{
	float duongnhonhat = timduongdautien(a, n);
	for(int i = 0; i < n; i++)
	{
		if(a[i] > 0 && a[i] < duongnhonhat)
		{
			duongnhonhat = a[i];
		}
	}
	return duongnhonhat;
}

void LietKeViTriBgGiaTriDuongMin(float a[], int n)
{
	float DuongMin = timgiatriduongnhonhat(a, n);
	for(int i = 0; i < n; i++)
	{
		if(a[i] == DuongMin)
		{
			printf("%4d", i);
		}
	}
}
int main()
{
	int n;
	float a[MAX];

	nhap(a, n);
	xuat(a, n);

	int vitriduongdau = timduongdautien(a, n);
	if(vitriduongdau == -1)
	{
		printf("\nMang khong co so duong");
	}
	else
	{
	printf("\nVi tri ma gia tri tai do bang gia tri duong nho nhat: ");
	LietKeViTriBgGiaTriDuongMin(a, n);
	}
	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 6: error: expected ';', ',' or ')' before '&' token
In function 'xuat':
Line 26: error: 'for' loop initial declaration used outside C99 mode
In function 'timduongdautien':
Line 33: error: 'for' loop initial declaration used outside C99 mode
In function 'timgiatriduongnhonhat':
Line 45: error: 'for' loop initial declaration used outside C99 mode
In function 'LietKeViTriBgGiaTriDuongMin':
Line 58: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments:
posted by ngyn.mhieu on Apr 20
#include <iostream>
using namespace std;

void Nhapmang(float a[], int n){
for (int i =0; i<n; i++){
cout<<"Nhap a["<<i<<"] = ";
cin>>a[i];
}
}

int timduongnhonhat(float a[], int n){
int temp;
for (int i =0; i<n; i++){
if (a[i]>0){
temp =a[i];
for (int j = i +1; j<n; j++){
if (a[j]>0 && a[j]<temp){
temp = a[j];
}
}
break;
}

}
return temp;
}

void xuatgiatri(float a[], int n){
int test = timduongnhonhat(a,n);
for (int i = 0; i<n; i++){
if (a[i] == test ){
cout<<i<<" ";
}
}
}

int main (){
int n;
float a[100];
cout<<"Nhap gia tri n = "; cin>>n;
Nhapmang(a,n);
cout<<"Cac gia tri thoa man yeu cau la ";
xuatgiatri(a, n);
}
reply