写函数select(int n,doublea[],double b[],double x),它将数组b中大于等于x的数顺序复制到数组a中,其中n为两个数组的大小。请分别用数组写法和指针写法完成上述功能。
题目如上,我闲着加了个动态分配就成了大写的懵逼……
// 703.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "stdio.h"
#include <string.h>
#include <stdlib.h>
select(int n,double a[],double b[],double x)
{
int i=0;
int j=0;
for(i=0;i<n;i++)
if(a[i]>=x){
b[j]=a[i];
j++;
}
printf("数组b为:\n");
for(i=0;i<n;i++)
printf("%f",b[i]);
return 0;
}
int main(int argc, char* argv[])
{
int n,i=0;
double x;
printf("请输入x的值:");
scanf("%f",&x);
printf("请输入数组长度:\n");
scanf("%d",&n);
double *b=(double *)malloc(sizeof(double) *n);//动态空间分配
double *a=(double *)malloc(sizeof(double) *n);
printf("请输入数组a:\n");
for(i=0;i<n;i++)
scanf("%f",&a[i]);
select(n,a,b,x);
free(a);
free(b);
return 0;
}