首页 > TAG信息列表 > 体版
GO语言-结构体版学生管理系统
package main import "fmt" //学生管理系统 //有一个物件: // 1.它保存了一些数据 --> 结构体的字段 // 2.他有4个功能 --> 结构体的方法 type student struct { id int64 name string } //造一个学生的管理者 type studentMgr struct { allStudent map[int64]stu7-8 实验2_3_表达式求值一 (结构体版)
有表达式如下: a / ( b * c - d ) 请按要求计算 。 输入格式: 只有一行,为4个用空格分隔的浮点数,依次代表a,b,c,d(请用double 类型存储)。 输出格式: 如果除数为0,则输出error,否则输出该表达式的值(保留1位小数)。 输入样例: 66.09 7.7 3.5 1.6 输出样例: 2.6 #include<stdio.h> strucGoLang-结构体版学生管理系统
首先是studentmgr.go package main import "fmt" type student struct{ id int64 name string class string } func newStudent(id int64,name,class string) *student{ return &student{ id: id, name: name, class: c