how to get the system time | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
29th Aug 2017, 12:01 PM
token token
token token - avatar
3 Answers
+ 4
#include<iostream> #include<ctime> using namespace std; int main() { time_t now_time; now_time = time(NULL); cout << "The result is counted in seconds!" << endl; cout << now_time<<endl; return 0; }
29th Aug 2017, 12:01 PM
token token
token token - avatar
+ 3
import java.util.Date; import java.util.Calendar; import java.text.SimpleDateFormat; public class Program { public static void main(String[] args) { Date now = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以方便地修 String hehe= dateFormat.format( now ); System.out.println(hehe); Calendar c = Calendar.getInstance();//可以对每个时间域 int year = c.get(Calendar.YEAR); int month = c.get(Calendar.MONTH); int date = c.get(Calendar.DATE); int hour = c.get(Calendar.HOUR_OF_DAY); int minute = c.get(Calendar.MINUTE); int second = c.get(Calendar.SECOND); System.out.println(year + "/" + month + "/" + date + " " +hour + ":" +minute + ":" + second); } }
29th Aug 2017, 12:05 PM
token token
token token - avatar
+ 1
https://code.sololearn.com/csnh7j2lT4mQ/?ref=app Try this for C++. It will return accurate system time till the last millisecond...
6th Sep 2017, 1:30 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar