扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
#includestdio.h
创新互联建站专注于嘉鱼企业网站建设,响应式网站开发,商城系统网站开发。嘉鱼网站建设公司,为嘉鱼等地区提供建站服务。全流程按需网站设计,专业设计,全程项目跟踪,创新互联建站专业和态度为您提供的服务
void main()
{
int fun(int x,int y);//函数声明
int a,b,c;
scanf("%d %d",a,b);
c=fun(a,b); //函数调用
printf("%d\n",c);
}
int fun(int x,int y)//函数
{
if(xy)
return(x-y);
else
return(y-x);
}
既然只有两个值并且是int可以相减取绝对值.
printf("The result is:%d",abs(x-y));
记得要#include math.h
#include "stdio.h"
int Add_Sub(int *p,int *q,int *s){
*s=*p-*q;
return *p+*q;
}
int main(int argc,char *argv[]){
int x,y,z;
printf("Enter x y(int)...\n");
scanf("%d%d",x,y);
printf("\nx+y = %d\n",Add_Sub(x,y,z));
printf("x-y = %d\n",z);
return 0;
}
扩展资料:
C语言包含的各种控制语句仅有9种,关键字也只有32 个,程序的编写要求不严格且以小写字母为主,对许多不必要的部分进行了精简。实际上,语句构成与硬件有关联的较少,且C语言本身不提供与硬件相关的输入输出、文件管理等功能,如需此类功能,需要通过配合编译系统所支持的各类库进行编程,故c语言拥有非常简洁的编译系统。
参考资料来源:百度百科-c语言
//Lagrange插值多项式
//算法描述:
// 1、输入:插值节点控制数n,插值点序列(x_i,y_i),i=0,1,...n,要计算的函数点x。
// 2、for(i=0,1,2,...,n)
// {
// temp=1;
// for(j=0,1,...i,i+1,...n)
// !x要事先给定
// temp=temp*(x-x_j)/(x_i-x_j);
// }
// fx=fx+temp*y_i;
// }
#includestdio.h
#includestring.h
#define MAX_n 20
typedef struct tagPOINT
{
double x;
double y;
}POINT;
double Lagrange()
{
int n,i,j;
double x,temp,fx=0;
POINT points[MAX_n];
printf("Now,please input the n value: \n");
scanf("%d",n);
if(n=1||nMAX_n)
{
printf("The value of n should be between 2 and %d\n",MAX_n);
return 1;
}
printf("Now,please input the (x_i,y_i),i=0,...,%d\n",n-1);
for(i=0;in;i++)
scanf("%lf%lf",points[i].x,points[i].y);
printf("Now,please input the x value:\n");
scanf("%lf",x);
for(i=0;in;i++)
{
temp=1;
for(j=0;jn;j++)
if(i==j)continue;
else temp=temp*(x-points[j].x)/(points[i].x-points[j].x);
fx=fx+temp*points[i].y;
}
printf("So,when x=%lf,the Lagrange(%lf)=%lf\n",x,x,fx);
}
int main()
{
char s[10];
Lagrange();
gets(s);
while(strcmp(s,"exit"))
{
if(strcmp(s,"con")==0)
{
Lagrange();
getchar();
}
printf("继续(输入con),退出(输入exit)!\n");
gets(s);
}
return 0;
}
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流