自定义三Helloworld
#include<stdio.h>
void hello()
{
printf("Hello World\n");
}
int main()
{
hello();
hello();
hello();
return 0;
}
=========================================================================
星ZIMU星
#include<stdio.h>
void xing()
{
printf("************\n");
}
void zimu()
{
printf("hjgdh\n");
}
int main()
{
xing();
zimu();
xing();
return 0;
}
=========================================================================
多函数X+Y
#include<stdio.h>
int add(int x,int y);
int main()
{
int a,b,s;
scanf("%d%d",&a,&b);
s=add(a,b);
printf("%d",s);
return 0;
}
int add(int x,int y)
{
return x+y;
}
=========================================================================
多函数N阶乘
#include<stdio.h>
float n1(float a)
{
float xsum=1;
while(a>0)
{
xsum=xsum*a;
a--;
}
return xsum;
}
int main()
{
int m;
scanf("%d",&m);
printf("n!=%lf",n1(m));
return 0;
}
=========================================================================
多函数a的b次方
#include<stdio.h>
#include<math.h>
int ci(int p,int q)
{
int i,n=1;
for(i=q;i>=1;i--)
{
n=n*p;
}
return n;
}
int main()
{
int a,b,m;
scanf("%d%d",&a,&b);
m=pow(a,b);
printf("%d\n",m);
printf("%d",ci(a,b));
return 0;
}
#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=
本文来自博客园,作者:凡是过去,皆为序曲,转载请注明原文链接:https://www.cnblogs.com/longhai3/p/15887241.html
如有疑问,欢迎提问
#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=#+=