xieyue-C++程序设计 各章中的 程序代码 适合初学者

源代码在线查看: 例8.1.txt

软件大小: 4499 K
上传用户: fpeisheng
关键词: xieyue-C 程序设计 程序 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				例8.1 最简单的例子。
				#include 
				using namespace std;
				class Time                     //定义Time类
				{public:                      //数据成员为公用的
				 int hour;
				 int minute;
				 int sec;
				};
				
				int main( )
				{ Time t1;                   //定义t1为Time类对象
				cin>>t1.hour;              //输入设定的时间
				cin>>t1.minute;
				cin>>t1.sec;
				cout				return 0;
				}
							

相关资源