作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些数据,比如
A=2.333
b=4.478
c=2.447
d=90
e=43
需要存储在数据库中。我想一次将它存储在像“abcde”这样的包中,当我调用它们时我可以将它们彼此分开。但如何呢?
最佳答案
这就是结构的用途:
typedef struct {
double a;
double b;
double c;
unsigned int d;
unsigned int e;
} mystruct;
mystruct m = { 2.333, 4.478, 2.447, 90, 43 };
printf("%.3f %.3f %.3f %u %u\n", m.a, m.b, m.c, m.d, m.e);
关于c - 如何将多个数据组合到一个变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42314723/
我是一名优秀的程序员,十分优秀!