C程序设计实验报告
实验项目:课堂练习1-3-2,1-3-3,1-3-4,2-3-1,2-3-2
姓名:余永祥 实验地点:家 实验时间:2020年2月25日
一、实验目的与要求
1.了解C语言程序设计的基础
2.进行一些简单程序的编写任务
二、实验内容
1、实验练习:
实验1-3-2:
#includemain() { int a,b,c,d; printf("Please enter a,b:"); scanf("%d %d",&a,&b); c=a+b; d=a*b; printf("c=%d",c); printf("d=%d",d); }
出现问题:无
解决方法:无
2、实验练习:
实验1-3-3:
#includemain() { printf("*\n"); printf("**\n"); printf("***\n"); printf("****\n"); printf("*****\n"); }
出现问题:无
解决方法:无
3、实验练习:
实验1-3-4:
#includemain() { printf("Data Types and Sizes:\n"); printf("long:%d\n",sizeof(long)); printf("unsigned:%d\n",sizeof(unsigned)); printf("double:%d\n",sizeof(double)); }
出现问题:名词拼写出错
解决方法:多加熟悉
4、实验练习:
实验2-3-1:
#include#include main() { float a,b; double x; printf("Please enter a,b:\n"); scanf("%f %f",&a,&b); x=(b+sqrt(b*b+2*a))/(a-b); printf("x=%.2f",x); }
出现问题:1.sqrt函数的运用较生疏,且不清楚要添加新的头函数
2.对数字的类型输入还有问题
解决方法:向同学询问后清楚了相应的用法,以及了解头函数的意义
5、实验练习:
实验2-3-2:
#includemain() { double r,h,S,V; printf("Please input r,h:"); scanf("%lf %lf",&r,&h); S=r*r*3.14; V=r*r*3.14*h/3; printf("底面积=%.2f",S); printf("体积=%.2f",V); }
出现问题:对数字的类型不理解
解决方法:对课件再次学习,理解int,double,foalt的意义