摘要: /*1.定义一个结构(struct). 2.声明及使用结构变量.*/#include<iostream>usingnamespace std;structFluid//定义结构体、包含三个数据。{public://声名为公有成员,所有的函数都可以访问。 char initial; double temp,density,veloc;};//注意,此处需要有一个分号。structSolid{public: char initial; double temp,density,stiffness;};int main(){ Fluid water,oil; Sol... 阅读全文
posted @ 2012-06-26 16:33 蚂蚁踩死了大象 阅读(217) 评论(0) 推荐(0) 编辑