当前位置:   article > 正文

【头歌】指针_对输入的两个整数a,b,用指针变量作为函数参数,交换a和b的值。

对输入的两个整数a,b,用指针变量作为函数参数,交换a和b的值。

1.用指针法输入12个整数,然后按每行4个数输出:

#include<stdio.h>
int main(void)
{
    /*********B0egin*********/
    int arr[256];
    for(int i = 0; i<12;i++){
        scanf("%d",&arr[i]);
    }
    int *p = NULL;
    p = &arr[0];
    for(int i = 0;i < 12;i++){
        printf("%d",*p);
        *p += 1;
    }
    /*********End**********/
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

2.对输入的两个整数a,b,用指针变量作为函数参数,交换a和b的值:

#include<stdio.h>
int main(void)
{
	int a,b;
	scanf("%d%d",&a,&b);
	/*********Begin*********/
    int *f = NULL,*p=NULL;
    f = &a;
    p = &b;
    int temp;
    temp = *f;
    *f = *p;
    *p = temp;
    printf("%d %d",*f,*p);
	/*********End**********/
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

3.用一个函数实现两个字符串的比较,即自己写一个strcmp函数:

#include<stdio.h>
int strcmp(char *p1,char *p2){
	/*********Begin*********/
    if(*p1 > *p2)
    return 1;
    else
    return 0;

	/*********End**********/
}
int main(void)
{
	char a[110],b[110];
	scanf("%s%s",a,b);
	if(strcmp(a,b)>0)
		printf("%s", a);
	else
		printf("%s", b);


    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/数据灵魂/article/detail/63056
推荐阅读
相关标签
  

闽ICP备14008679号