标签:浮点 please 导致 -- while character 设计 传递 小结
(1)问题的简单描述:
流程图如下:
(2)实验代码:
#include<stdio.h>
int main()
{
int *p,a, c=3;
float *q, b;
p=&a;
q=&b;
printf("please input the value of a,b:");
scanf("%d%f",&*p,&*q);/*使用指针p,q输入a,b的值*/
printf("result:\n");
printf(" %d, %f\n",a,b);
printf(" %d, %f\n",*p,*q);/*通过指针p,q间接输出a,b的值*/
printf("the address of a,b:%p,%p\n",&a,&b);
printf("the address of a,b:%p,%p\n",p,q);/*输出p,q的值并与上行输出结果进行比较*/
p=&c;
printf("c=%d\n",*p);
printf("the address of c is:%x,%x\n",p,&c);/*输出p的值及c的地址*/
return 0;
}
输出结果:
(3)问题分析:无。
(1)问题的简单描述:
流程图如下:
(2)实验代码:
#include<stdio.h>
void swap1(int x,int y);
void swap2(int *x,int *y);
int main()
{
int a,b;
printf("please input a=:");
scanf("%d",&a);
printf("\n b=:");
scanf("%d",&b);
swap1(a,b);
printf("\nAfter call swap1:a=%d b=%d\n",a,b);
swap2(&a,&b);
printf("\nAfter calll swap2:a=%d b=%d\n",a,b);
return 0;
}
void swap1(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
}
void swap2(int *x,int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
运行结果:
(3)问题分析:在第二个调用函数的定义时,因为是地址传递才会有实现值传递的功能,我当时将里面的temp变量定义为一个指针,在进行值传递,但是,这样出来的结果也不会进行交换。我发现其实temp是一个中间变量,我们可以将x和y的值进行交换来得到结果。
(1)问题的简单描述:
流程图如下:
(2)实验代码:
# include<stdio.h>
# include<conio.h>
char *reverse(char *str);
char *link(char *str1,char *str2);
int main()
{
char str[30],str1[30],*str2;
printf("input reversing character string:");
gets(str);
str2=reverse(str);
printf("\noutput reversed character string:");
puts(str2);
printf("input string1:");
gets(str);
printf("input string2:");
gets(str1);
str2=link(str,str1);
puts(str2);
return 0;
}
char *reverse(char *str)
{
char *p,*q, temp;
p=str,q=str;
while(*p!='\0')
{
p++;
}
p--;
while(q<p)
{
temp=*q;
*q=*p;
*p=temp;
q++;
p--;
}
return str;
}
char *link(char *str1,char *str2)
{
char *p=str1,*q=str2;
while(*p !='\0')
{
p++;
}
while(*q!='\0')
{
*p=*q;
q++;
p++;
}
// putch('\0');
// while (((*p++)==(*q++))==0);
// while ((*p++=*q++)==0);
*p = *q;
return str1;
}
运行结果:
(3)问题分析:字符位置倒位的时候,p和q代码混淆了,导致运行结果错误。在结束字符为空字符代码的输入时,代码就是有一个问题,在连接字符串的时候,后面会带一个字符,因为字符的长度超出了数组的长度。
(1)问题的简单描述:
流程图如下:
(2)实验代码:
# include<stdio.h>
# define N 10
void arrsort(int a[],int n);
int main()
{
int a[N],i;
printf("输入:");
for(i=0;i<N;i++)
{
scanf("%d",&a[i]);
}
arrsort(a,N);
printf("输出:");
for(i=0;i<N;i++)
{
printf("%d ",a[i]);
}
}
void arrsort(int a[],int n)
{
int *p,*q,temp;
p=a;
q=a+n-1;
while(p<q){
while(*p%2==1)//判断是否为奇数
{
p++;
}
while(*q%2==0)//判断是否为偶数
{
q--;
}
if(p>q)
{
break;
}
else
{
temp=*p;
*p=*q;
*q=temp;
p++;
q--;
}
}
}
运行结果:
(3)问题分析:无。
(1)形参的变化不会影响实参的变化。
(2)一个程序,要限制他的输入数据的大小,不然的话,程序会运行错误。
(3)要分清指针的移动和相对移动。
标签:浮点 please 导致 -- while character 设计 传递 小结
原文地址:https://www.cnblogs.com/daiqiu/p/11008308.html