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

第8章第1讲简单函数介绍

时间:2017-05-20 20:04:23      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:blog   play   mat   double   span   http   自定义   定义函数   函数   

技术分享

技术分享

技术分享

#include "stdio.h"
#include "math.h"
main()
{
    int x;
    double y;
    scanf("%d",&x);
    y=sqrt(x);
    printf("%lf\n",y);

}

技术分享


#include "stdio.h"

int sum(int x,int y) //自定义函数
{
    return x+y;

}
main()                     //主函数
{

    int s;
    s=sum(2,3);
    printf(“s=%d\n",s);

}

技术分享

#include "stdio.h"
void Hello( )            //自定义函数
{ 
     printf ("Hello world!\n"); 
} 
main()                     //主函数
{
    Hello();
}

技术分享

#include"stdio.h"
void sum(int a,int b)   //自定义函数
{
      int s;
      s=a+b;
      printf("s=%d\n",s);
} 
main()                       //主函数
{
    int x=2,y=3;
    sum(x,y);
}

技术分享

#include"stdio.h"
int sum()                  //自定义函数
{
      int a,b,s;
      scanf("%d%d",&a,&b);
      s=a+b;
      return s;
} 
main()                       //主函数
{

    int s;
    s=sum();
    printf("s=%d\n",s);

}

技术分享

#include"stdio.h"
int sum(int a,int b )    //自定义函数
{
      int s;
      s=a+b;
      return s;
} 
main()                       //主函数
{

    int x,y,s;
    scanf("%d%d",&x,&y);
    s=sum(x,y);
    printf("s=%d\n",s);

}

技术分享

技术分享

技术分享

 

第8章第1讲简单函数介绍

标签:blog   play   mat   double   span   http   自定义   定义函数   函数   

原文地址:http://www.cnblogs.com/gaiyin/p/6882965.html

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