博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验五
阅读量:6364 次
发布时间:2019-06-23

本文共 1085 字,大约阅读时间需要 3 分钟。

int add(int a,int b)

{
 int z;
 z=a+b;
 return z;
}
int minus(int a,int b)
{
 int z;
 z=a-b;
 return z;
}
int multip(int a,int b)
{
 int z;
 z=a*b;
 return z;
}
int quotient(int a,int b)
{
 int z;
 z=a/b;
 return z;
}
int mod(int a,int b)
{
 int z;
 z=a%b;
 return z;
}
#include <stdio.h>
int main()
{
 int a,b,c1,c2,c3,c4,c5;
 scanf("%d%d",&a,&b);
    c1=add(a,b);
 c2=minus(a,b);
 c3=multip(a,b);
 c4=quotient(a,b);
 c5=mod(a,b);
 printf("%d %d %d %d %d\n",c1,c2,c3,c4,c5);
 return 0;

}

 

int prime(int n){    int a;    for(a=2;a
int main(){ int x; scanf("%d",&x); x=prime(x); if(x==0){ printf("x不是素数\n"); }else{ printf("n是素数\n"); } return 0;}

 

int max2(int a,int b){    if(a>=b)        return a;    else        return b;}int max4(int a,int b,int c,int d){    int m,n;    m=max2(a,b);    n=max2(c,d);    if(m>=n)        return m;    else        return n;}#include 
int main(){ int a,b,c,d,max; scanf("%d%d%d%d",&a,&b,&c,&d); max=max4(a,b,c,d); printf("%d\n",max); return 0;}

 

 

 

转载于:https://www.cnblogs.com/p201821440035/p/10967774.html

你可能感兴趣的文章
Scaffold-DbContext
查看>>
关于VMware Workstation主机列表问题求教
查看>>
配置管理小报101021:给ubuntu加监控
查看>>
qml文字滚动效果的封装,实现方式运用的qml中提供的动画效果,另一种实现方式也可以使用定时器修改控件的坐标来实现...
查看>>
标准C++实现任务队列
查看>>
jdbc url
查看>>
刷leetcode第704题-二分查找
查看>>
debug_backtrace() 函数生成一个 backtrace(追踪)
查看>>
第七天,还是盒子
查看>>
XAMPP软件包下载
查看>>
XXL-JOB初体验-ORACLE版
查看>>
沉思录:别人的棺材
查看>>
jersey + spring + mybatis + redis项目搭建
查看>>
PAT 1006 部分正确_另一种解法
查看>>
在Keil环境下使用JLink实现printf输出重定向至debug窗口
查看>>
JFreeChart生成3D饼图
查看>>
postgres的\d命令不显示全部的用户表
查看>>
poj 3468 A Simple Problem with Integers
查看>>
OOA/OOD/OOP细讲
查看>>
Tomcat 系统架构与设计模式_ 设计模式分析
查看>>