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

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

#include<stdio.h>

#include<math.h>

int add(int x,int y){

      int s;

           s=x+y;

           return s;

}

 

int minus(int x,int y){

      int s;

           s=x-y;

           return s;

}

 

int multip(int x,int y){

      int s;

           s=x*y;

           return s;

}

 

int quotient(int x,int y){

      int s;

           s=x/y;

           return s;

}

 

int mod(int x,int y){

      int s;

           s=x%y;

}

 

int main()

{

   int x,y;

   char c;

   int a,b;

   int r;

   scanf("%d",&x);

   scanf("%c",&c);

   scanf("%d",&y);

   if (c=='+')

            r=add(x,y);

   else if (c=='-')

            r=minus(x,y);

   else if (c=='*')

            r=multip(x,y);

   else if (c=='/')

            r=quotient(x,y);

   else if (c=='%')

   r=mod(x,y);

   printf("The result is %d\n",r);

   return 0;

}

                         

 

 

#include<stdio.h>

int prime(int n){

int i,j,k;

k=n/2;

if (n==1)

return 0;

for (i=2;i<=k;i++)

{

if (n%i==0)

return 0;

}

return 1;

}

int main()

{

   int n;

   while (scanf("%d",&n)==1)

   {if (prime(n)==1)

            printf("YES\n");

   else if (prime(n)==0)

         printf("NO\n");}

   return 0;

}

 

 

 

 

 

 

 

#include<stdio.h>

int max2(int a,int b){

         if (a>=b)

return a;

else (a<b);

return b;

}

 

int max4(int a,int b,int c,int d){

int m,n;

m=max2(a,b);

n=max2(c,d);

return max2(m,n);

}

 

int main(){

int a,b,c,d,s;

scanf("%d",&a);

scanf("%d",&b);

scanf("%d",&c);

scanf("%d",&d);

s=max4(a,b,c,d);

printf("%d\n",s);

return 0;

}

 

 

 

#include<stdio.h>

int qwe(int n){

         int l;

if (n==1||n==0)

l=1;

else

l=n*qwe(n-1);

return l;

}

 

int main(){

int n;

scanf("%d\n",&n);

printf("%d\n",qwe(n));

return 0;

}

 

转载于:https://www.cnblogs.com/p201821440037/p/10967696.html

你可能感兴趣的文章
关于ios::sync_with_stdio(false);和 cin.tie(0)加速c++输入输出流
查看>>
浅析微信支付:统一下单接口
查看>>
网络对抗技术_实验一_网络侦查与网络扫描
查看>>
黑板模式分析
查看>>
释放Win8.1 WinSxS冗余更新,微软Dism来解决
查看>>
【BZOJ】2243 [SDOI2011]染色
查看>>
springboot集成springsession利用redis来实现session共享
查看>>
文件上传与下载总结
查看>>
【测试基础】测试用例的设计方法
查看>>
MySQL优化-》执行计划和常见索引
查看>>
ThinkPHP中通过URL重写隐藏应用的入口文件index.php的相关服务器的配置
查看>>
18、图片 & 多媒体
查看>>
第七周进度总结
查看>>
Android任务栈的运行规律
查看>>
批处理通用测试代码
查看>>
uva 10594 Data Flow
查看>>
POJ 3592 Instantaneous Transference
查看>>
redis数据类型(字符串)
查看>>
解决火狐浏览器安装不上Selenium IDE插件“此附加组件无法安装”
查看>>
How PD works in Agile team
查看>>