第一次c语言程序设计上机报告

 

第一次C程序设计上机报告
 
 姓名:郑昊    学号:120705217      班级:12级电信2班
 
 任务一:创建一个基本程序。
 
 实验内容:编写一个“显示华氏温度与摄氏温度对照表”C程序
 
 实验目的:掌握C语言开发工具,掌握简单C程序的编辑、翻译、连接和运行的一般过程


//***********************************************
//对 fahr=0,20,...,300
//打印华氏温度与摄氏温度对照表
//code by 郑昊 120705217 2012-3-08
//***********************************************
#include
int main()
{
	int fahr,celsius;
	int lower,upper,step;
	
	lower=0;    /*温度表的下限*/
	upper=300; /*温度表的上限*/
	step =20;  /*步长*/
	fahr=lower;

	printf("郑昊,120705217\n","");
	while(fahr<=upper){
		celsius=5*(fahr-32)/9;
		printf("%d%d\n", fahr,celsius);
		fahr=fahr+step;
	}
	return 0;
}

 
//***********************************************
//对 fahr=0,20,...,300
//打印华氏温度与摄氏温度对照表
//code by 郑昊 120705217 2012-3-08
//***********************************************
#include
int main()
{
	int fahr,celsius;
	int lower,upper,step;
	
	lower=0;    /*温度表的下限*/
	upper=300; /*温度表的上限*/
	step =20;  /*步长*/
	fahr=lower;

	printf("郑昊,120705217\n","");
	while(fahr<=upper){
		celsius=5*(fahr-32)/9;
		printf("%d\t%d\n", fahr,celsius);
		fahr=fahr+step;
	}
	return 0;
}


………………………………………任务分割线………………………………………
 
 
任务2:进一步熟悉C程序编写的一般过程。
 
 实验内容:运行作业“例 6-3”程序
 
 实验目的:加深理解C程序的编辑、翻译、连接和运行的一般过程

/*源程序:exp6_3.cpp*/
#include
void main () 
{
	void swap(int x, int y);
    int a,b;
	a=2,b=6;
	printf("调用前:a=%d,b=%d\n",a,b);
    swap(a,b);
	printf("调用后:a=%d,b=%d\n",a,b);
}
void swap(int x,int y)
{
	int temp;
	printf("交换前:x=%d,y=%d\n",x,y);
	temp=x;
	x=y;
	y=temp;
	printf("交换后: x=%d,y=%d\n",x,y );
}
		


 

第一次上机操作的体会

感觉有点乱  不过适应一下也感觉不错

嗯,感觉作为一个程序员要有一个严谨的态度,不然输入不谨慎,错误无限多

第二么,要学好编程,多多小练习一下,是非常有必要的

最后么,编程员要找到自己最好的编程序的方法,这很重要

好了就这样

 

 

 

 

 

你可能感兴趣的:(c语言的作业小题目)