码迷,mamicode.com
首页 > 其他好文 > 详细

作业三 4,5

时间:2017-04-05 09:49:57      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:get   img   with   .com   ted   etc   int   std   code   

技术分享

二,代码

#include<stdio.h>
#define N 10
main()
{int  fun (int *p);
int a[10]={1,2,3,4,5,6,7,8,9,10};
int *p ;
    p=a;
    fun(a);
    
}
    
int fun(int *p) 
{int i;
for(i=0;i<N;i++)
printf("%d",*p+i);
} 

 结果:

12345678910
--------------------------------
Process exited after 0.1311 seconds with return value 0
请按任意键继续. . .

总结:

1,我一开始的看到题目的思路是像上次一样,用getchar输出来,后来经过查找,getchar只能输出字符所以这条思路行不通。

2,后来我通过书中的查找知道了,可以用define来从前面定义整数然后这样在for循环里就不用出现数字10了!!!

3,要善于查找和学习。

码云:281621575@qq.com

 

作业三 4,5

标签:get   img   with   .com   ted   etc   int   std   code   

原文地址:http://www.cnblogs.com/sunmingyang/p/6667143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!