第一次c程序设计上机报告
姓名:严浩峰 学号:120705216 班级:12电子信息工程2班
任务一:创建一个基本程序
实验内容:编写一个“显示华氏温度与摄氏温度对照表”C程序
实验目的:掌握C语言开发工具,掌握简单C程序的编辑,编译,连接和运行的一般过程
我的程序:
//***********************************
//对fahr=0,20,...300
//打印华氏温度与摄氏温度对照表
//code by 严浩峰 120705216 3.8
//************************************
#include<stdio.h>
int main()
{
int fahr,celsius;
int lower,upper,step;
lower =0; /*温度表的下限*/
upper=300; /*温度表的上限*/
step=20; /*步长*/
fahr=lower;
printf("姓名,学号\n","");
while(fahr<=upper){
celsius=5*(fahr-32)/9;
printf("%d %d\n", fahr,celsius);
fahr=fahr+step;
}
return 0;
}
程序运行效果截图:
#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);
}