Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
Guest
DATE:
June 27, 2014, 10:58 p.m.
FORMAT:
Text only
SIZE:
465 Bytes
Raw
Download
Tweet
HITS:
1058
Go to comments
Report
#include <iostream>
#include <math.h>
#include <time.h>
using namespace std;
void main (){
setlocale(LC_ALL,"rus");
int H,M,S;
cout<<"введите колличество часо,минут, секунд\n";
cin>>H>>M>>S;
if(S+1<60)
cout<<H<<M<<S+1;
else {
if(M+1<60)
cout<<H<<M+1<<"00\n";
else
{
if(H+1<24)
cout<<H+1<<"00"<<"\n"<<endl;
else
cout<<"00"<<"00"<<"00\n";
}
}
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus