标签: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); }
标签:blog play mat double span http 自定义 定义函数 函数
原文地址:http://www.cnblogs.com/gaiyin/p/6882965.html