第 1次实验任务

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

//********************************
//	对fahr=0,20,...300
//	打印华氏温度与摄氏温度对照表
//	code by蔡梦杰  30   2013-03-08
//********************************
#include<stdio.h>
int main()
{
	int fahr,celsius;
	int lower,upper,step;
	lower=0;       /*温度表的下限*/
	upper=300;     /*温度表的上限*/
	step=20;       /*步长*/
	fahr=lower;
	printf("蔡梦杰,30\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蔡梦杰  30   2013-03-08
//********************************
#include<stdio.h>
int main()
{
	int fahr,celsius;
	int lower,upper,step;
	lower=0;       /*温度表的下限*/
	upper=300;     /*温度表的上限*/
	step=20;       /*步长*/
	fahr=lower;
	printf("蔡梦杰,30\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程序的编辑、翻译、连接和运行的一般过程

//********************************
//	函数间的参数值单向传递方式应用示例
//	code by蔡梦杰  30   2013-03-08
//********************************
#include<stdio.h>
/*源程序:exp6_3.cpp*/
#include<stdio.h>
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程序设计上机体会
 
知识积累:
 
    (1)“#include<stdio.h>”是编译预处理命令,其目的是使输入输出能正常进行;
 
     (2)main是主函数的函数名,每个C源程序都必须有,切只能有一个主函数,函数后面必须有一个圆括号。
 
体会:
 
     在程序编写过程中容易出现漏加标点的情况,这会影响整个程序的运行,所以在程序编写过程中应该注意标点。同时,我们应该注意编程语言的积累!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值