首页 > 代码库 > 160809225-叶桦汀《C语言程序设计》实验报告
160809225-叶桦汀《C语言程序设计》实验报告
#include<stdio.h>int main(){ int a,b,c,t; printf("请输入三个整数"); scanf("%d%d%d",&a,&b,&c); if(a<b){ t=a; a=b; b=t; } if(b>c) { printf("%d\t%d\t%d\n",a,b,c);} else if(c<a){ printf("%d\t%d\t%d\n",c,a,b); } else{ printf("%d\t%d\t%d\n",a,b,c); } return 0; }
# include <stdio.h> # include <math.h> int main(void){ double x, y; printf("输入 x:"); scanf("%lf", &x); if (x >4){ y = sqrt(x-4); } else if (x <-5){ y =fabs(x); } else{ y = x+3; } printf("结果= %.2f\n", y);return 0;}
#include<stdio.h>int main(){ char ch; printf("请输入一个字符:\n"); scanf("%c",&ch); printf("其大写字符是:%c\n",ch-32);}
# include <math.h> int main(void){ double x, y; printf("输入 x:"); scanf("%lf", &x); if (x >=10){ y = (3*x)-11; } else if (x <1){ y =x; } else { y = (2*x)-11; } printf("结果= %.2f\n", y);return 0;}
# include <stdio.h> int main(){ int a; printf("请输入成绩;"); while(scanf("%d",&a) && a >= 0 && a <= 100) if(a>=90) {printf("A");} else if(a<=89&a>=80){ printf("B");} else if(a<=79&a>=70) {printf("C");} else if(a<=69&a>=60){ printf("D"); } else if(a<60){ printf("E"); }}
160809225-叶桦汀《C语言程序设计》实验报告
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。