蓝桥杯试题 历届真题 时间显示【第十二届】【省赛】【B组】

蓝桥杯试题 历届真题 时间显示【第十二届】【省赛】【B组】_第1张图片

 思路:给出的是毫秒数,需先除以1000,转换为秒,然后减去整年,整月,整日的秒数,此时便只剩当天从0点到需要求的秒数,然后算出时分秒即可。

#include
using namespace std;

int main(){
	long long int time, x, day1, day, day3, day2;
	int month, i, count, count1, hh, mm, ss;
	scanf("%lld", &time);
	time=time/1000;
	//先减去整年 
	for(int i=1970; ;i++){
		if(i%4==0&&i%100!=0||i%400==0){
			x=365*24*60*60;
		}
		else{
			x=366*24*60*60;
		}
		count=i;
		if(x>time){//判断是否够一个年,如果不够则结束循环 
			break;
		}
		time=time-x;
	} 
	//再减去整月 
	for(month=0; ;month++){
		if(month==1||month==3||month==5||month==7||month==8||month==10||month==12){
			day=31*24*60*60;
		}
		else if(month==2){
			if(count%4==0&&count%100!=0||count%400==0){
				day=29*24*60*60;
			}
			else{
				day=28*24*60*60;
			}
		}
		else{
			day=30*24*60*60;
		}
		count1=month;
		if(day>time){
			break;
		}
		time=time-day;
	}
	//再减去整日 
	for(i=0; ;i++){
		day1=24*60*60;
		if(time

你可能感兴趣的:(蓝桥杯历年真题,开发语言,后端,算法,c++,c语言)