language: C++ (gcc-4.3.4)
date: 103 days 14 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
#include<iostream>
using namespace std;
int main()
{
 
int h,m,s;
cout<<"Enter Date in HH:MM:SS format"<<endl;
cin>>h>>m>>s;
cout<<"Date in HH:MM:SS format is="<<h<<":"<<m<<":"<<s;
 
return (0);
}
  • upload with new input
  • result: Success     time: 0.02s    memory: 2728 kB     returned value: 0

    11 56 45
    Enter Date in HH:MM:SS format
    Date in HH:MM:SS format is=11:56:45