哈工大C语言程序设计精髓第一周练兵区
程序员文章站
2023-12-30 19:28:46
...
这是第一周的一些东西 简单记录一下
1、
题目内容:
使用printf()在屏幕上输出 hello world!
#include <stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
2、
题目内容:
在屏幕上输出多行信息
使用printf()函数在屏幕上输出以下多行信息:hello world!hello hit!hello everyone!提示:在printf()函数中转义字符‘\n’表示换行。
#include <stdio.h>
int main()
{
printf("helloworld!\n");
printf("hello hit!\n");
printf("hello everyone!\n");
return 0;
}
3、
题目内容:
计算半圆弧长及半圆的面积。
编程并输出半径r=5.3的半圆弧长(提示:半圆弧长不应该加直径的长度。)及该半圆弧与直经围成的半圆的面积,的取值为3.14159。要求半径r和必须利用宏常量表示。
#include <stdio.h>
#include <stdlib.h>
#define r 5.3
#define PI 3.14159
int main()
{
printf("Area=%.5f\n",PI*r*r/2);
printf("circumference=%.5f\n",PI*r);
return 0;
}
4、
题目内容:
计算长方体体积
编程并输出长1.2、宽4.3、高6.4的长方体的体积。要求长方体的长、宽、高必须利用const常量表示。程序中用到的数据类型均为为 double类型。
#include<stdio.h>
int main()
{
const double a=1.2,b=4.3,c=6.4;
printf("volume=%.3f\n",a*b*c);
return 0;
}