160809225-叶桦汀《C语言程序设计》实验报告

时间:2022-10-31 15:05:08
#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 ;
}

160809225-叶桦汀《C语言程序设计》实验报告

# include <stdio.h>
# include <math.h>
int main(void)
{
double x, y;
printf("输入 x:");
scanf("%lf", &x);
if (x >){
y = sqrt(x-);
}
else if (x <-){
y =fabs(x);
}
else{
y = x+;
}
printf("结果= %.2f\n", y);
return ;
}

160809225-叶桦汀《C语言程序设计》实验报告

#include<stdio.h>
int main()
{
char ch;
printf("请输入一个字符:\n");
scanf("%c",&ch);
printf("其大写字符是:%c\n",ch-);
}

160809225-叶桦汀《C语言程序设计》实验报告

# include <math.h>
int main(void)
{
double x, y;
printf("输入 x:");
scanf("%lf", &x);
if (x >=){
y = (*x)-;
}
else if (x <){
y =x;
}
else {
y = (*x)-;
}
printf("结果= %.2f\n", y);
return ;
}

160809225-叶桦汀《C语言程序设计》实验报告

# include <stdio.h>
int main(){
int a;
printf("请输入成绩;");
while(scanf("%d",&a) && a >= && a <= )
if(a>=)
{printf("A");}
else if(a<=&a>=){
printf("B");}
else if(a<=&a>=)
{printf("C");}
else if(a<=&a>=){
printf("D");
}
else if(a<){
printf("E");
}
}

160809225-叶桦汀《C语言程序设计》实验报告

这次作业花了我很多时间在这期间我翻阅了课件,课本,还有上网查这体现出了我对这个还不熟练还有就是小毛病很多。这一点是很达到问题在以后编一个程序时会有几十万个代码其中的小错误出错了找起来就会非常麻。烦也可能会影响整个程序的运行。所以培养认真编程是非常重要的。还有就是片头问题我一直认为片头只有一个而在做第四题时我只用了一个mathH。可一直得不出答案,我就查了去网上查了一下其他人在做函数是的代码才认识到我的错误所在,查询资料和借鉴他人的经验也是十分必要的 。