strufunc.c
来自「C_C++程序员实用大全(精华版)源代码 代码详实 一步一步深入 适合各阶段」· C语言 代码 · 共 33 行
C
33 行
#include <stdio.h>
struct Shape
{
int type;
int color;
float radius;
float area;
float perimeter;
};
void show_structure(struct Shape shape)
{
printf("shape.type %d\n", shape.type);
printf("shape.color %d\n", shape.color);
printf("shape.radius %f shape.area %f shape.perimeter %f\n",
shape.radius, shape.area, shape.perimeter);
}
void main(void)
{
struct Shape circle;
circle.type = 0;
circle.color = 1;
circle.radius = 5.0;
circle.area = 22.0 / 7.0 * circle.radius * circle.radius;
circle.perimeter = 2.0 * 22.0 / 7.0 * circle.radius;
show_structure(circle);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?