?? strufunc.c
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -