C语言程序的设计电子课件源代码参考的答案02单元2 顺序结构程序的设计
单元2 顺序结构程序设计
源代码
SC 01 02 01 02 001
1.源代码编号
SC 01 02 01 02 001
2.源代码来源
单元2 顺序结构程序设计
例2-4
3.问题描述
putchar()函数举例#include
int main()
{
char a,b,c,d;
a='g';
b='o';
c=111;//与ASCII码值111对应的字符为o
d='d';
putchar(a);
putchar(b);
putchar(c);
putchar(d);
return 0;
}
1.源代码编号
SC 01 02 01 02 002
2.源代码来源
单元2 顺序结构程序设计
例2-5
3.问题描述
getchar()的应用举例#include
int main()
{
char c;
c=getchar();
putchar(c);
return 0;
}
SC 01 02 01 02 003
1.源代码编号
SC 01 02 01 02 003
2.源代码来源
单元2 顺序结构程序设计
例2-6
3.问题描述
求一元二次方程ax2+bx+c=0的根,要求:a、b、c由键盘输入,且a≠0且b2-4ac>0。#include
#include
void ExtractERRoot(float a,float b,float c);
void ExtractERRoot(float a,float b,float c)
{
float disc,x1,x2,p,q;
p= -b/(2*a);
disc=b*b-4*a*c;
q=(float)sqrt(disc)/(2*a);
x1=p+q;x2=p-q;
printf ("方程的两根分别为:x1=%5.2f,x2=%5.2f。\n",x1,x2);
}
int main()
{
float a,b,c;
printf("请输入方程系数a,b,c,保证b*b-4*a*c>0,以空格或回车或tab等分隔:\n");
scanf("%f%f%f",&a,&b,&c);
ExtractERRoot(a,b,c);
return 0;
}
SC 01 02 01 02 004
1.源代码编号
SC 01 02 01 02 004
2.源代码来源
单元2 顺序结构程序设计
例2-7
3.问题描述
编写程序,输入一个三位整数,输出各位数字的和。如,输入123,输出6。
4.程序代码
#include
int sum(int n);
int sum(int n)
{
int ge,shi,bai;
ge=n%10;//提取个位数
shi=n/10%10;//提取十位数
bai=n/100;//提取百位数
return ge+shi+bai;
}
int main()
{
int n;
printf("请输入一个三位正整数:");
scanf("%d",&n);
printf("数%d的各位数字之和为:%d。\n",n,sum(n));//函数调用作为函数实参
return 0;
}
SC 01 02 01 02 005
1.源代码编号
SC 01 02 01 02 005
2.源代码来源
单元2 顺序结构程序设计
引例
3.问题描述
已知有两个整数定义如下:int a=10,b=20;请编写一函数,交换两个变量的值,使得交换后,a=20,b=10#include
int a,b;
void swap();
int main()
{
a=10,b=20;
printf("交换前:a=%d,b=%d\n",a,b);
swap();
printf("交换后:a=%d,b=%d\n",a,b);
return 0;
}
void swap()
{
int c;
c=a;
a=b;
b=c;
}SC 01 02 01 02 006
1.源代码编号
SC 01 02 01 02 006
2.源代码来源
单元2 顺序结构程序设计
课堂实践2-2
3.问题描述
输入三角形的三边长,求三角形面积。
提示:
三角形已知三条边长后,求面积的公式为:,其中s=(a+b+c)/2。此公式中,使用math.h头文件中sqrt(x)函数来表示。#include
#include
double area(double a,double b,double c)
{
double s=(a+b+c)/2;
return sqrt(s*(s