⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.cpp

📁 学习VC++的最基础程序
💻 CPP
字号:
#include<iostream>
#include"class.h"
using namespace std;
void Time::print(){	
	if(s>=0&&s<=23){
		if(f>=0&&f<=59){
			if(m>=0&&m<=59){
				cout<<s<<":"<<f<<":"<<m<<endl;}
			else
				cout<<"error"<<endl;}
		else
			cout<<"error"<<endl;}
	else
		cout<<"error"<<endl;
}
void Time::shezhi(){
	cout<<"请输入当前时间(时:分:秒)"<<endl;
	cin>>s>>f>>m;
}
int main()
{
	Time now;
	now.shezhi();
	now.print();
	return 1;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -