I am having problem in creating a function like this in Java:
for(i=initial Time ; i<some final time ; i imcrement by 15 sec )
{
System.out.println(i);
}
any suggestions are cordially accepted.
The requirement is that we generate different time values increased by 15 seconds , its not like we need to execute every 15 seconds
If you just need different time values incremented by 15s then: