[ create a new paste ] login | about

Link: http://codepad.org/HhPO90j8    [ raw code | output | fork | 2 comments ]

C, pasted on Oct 1:
#include<stdio.h>
#include<conio.h>
#include<math.h>
#define MAX 100

void nhap (int 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("%d", &a[i]);
	}
}

void xuat(int a[], int n)
{
	for(int i = 0; i < n; i++)
	{
		printf("%4d", a[i]);
	}
}


void LietKe(int a[], int n)
{
	int flag = 0;
	for (int i = 0; i < n; i++)
    {
        if (a[i] > abs(a[i - 1]) && a[i] < abs(a[i + 1]))  
        {
            flag = 1;
            printf("%4d", a[i]);
        }
    }
	if (flag == 0)
        printf("Mang ko co gia tri do");
}
int main()
{
	int n;
	int a[MAX];
	
	nhap(a, n);
	xuat(a, n);

	printf("\nCac so trong mang thoa dieu kien\n ");
	LietKe(a, n);

	getch();
	return 0;
}


Output:
1
2
3
4
5
6
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 'LietKe':
Line 36: error: 'for' loop initial declaration used outside C99 mode


Create a new paste based on this one


Comments:
posted by 21521809@gm.uit.edu.vn on Jan 2

reply
posted by 21521809@gm.uit.edu.vn on Jan 2

#include<stdio.h>
#include<iostream>
#include<conio.h>
#include<cmath>
using namespace std;
#define MAX 100

void nhap (float a[], int &n,float &x,float &y)
{
// do{
// cout<<"nhap doan [x, y] :";
// cin>>x>>y;
// if(x>y) cout<<"moi nhap lai [x, y] \n";
// }while(x>y);
do
{
cout<<"Nhap so phan tu: ";
cin>> n;
if(n <= 0 || n > MAX )
{
cout<<"\nSo phan tu khong hop le. Xin kiem tra lai !";
}
}while(n <= 0 || n > MAX);
for(int i = 0; i < n; i++)
{
cout<<"\nNhap a["<<i<<"] = " ;
cin>>a[i];
}
}
void KetQua(float a[], int n,float x,float y)
{
cout<<"ket qua la :\n";
for(int i=1;i<n-1;i++){
if(abs(a[i-1])<a[i] && a[i]<abs(a[i+1])){
cout<<a[i]<< "\t";
}
}
}
int main()
{
int n;
float x,y;
float a[MAX];

nhap(a, n, x, y);
KetQua(a,n,x,y);
return 0;
}

reply