C 语言实例 - 使用结构体(struct)
使用结构体(struct)存储学生信息。
实例
#include <stdio.h> struct student { char name[50]; int roll; float marks; } s; int main() { printf("输入信息:\n"); printf("名字: "); scanf("%s", s.name); printf("编号: "); scanf("%d", &s.roll); printf("成绩: "); scanf("%f", &s.marks); printf("显示信息:\n"); printf("名字: "); puts(s.name); printf("编号: %d\n",s.roll); printf("成绩: %.1f\n", s.marks); return 0; }
输出结果为:
输入信息: 名字: codebaoku 编号: 123 成绩: 89 显示信息: 名字: codebaoku 编号: 123 成绩: 89.0
C 语言实例 - 复数相加 C 语言实例 使用结构体(struct)将两个复数相加。 我们把形如 a+bi(a,b均为实数)的数称为复数,其中 a 称为实部,b 称为虚部,i 称为虚数单位。 实例 [mycode3 type='cpp'] #include typedef struct complex { float real; float imag; } complex; compl..