• AMIT KUMAR ROY 10
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
public class TimeTableset_controller{
integer i=1;
integer count;
for(count=1;count<24;count++)
{
    if(count<12 || count>=12)
        if(count<12)
    system.debug(i+':00AM-'+(++i)+':00AM');
    if(count>=12)
        system.debug(i+':00PM-'+(++i)+':00PM');
    
}
}
public class TimeTableset_controller{
integer i=1;
integer count;
for(count=1;count<24;count++)
{
    if(count<12 || count>=12)
        if(count<12)
    system.debug(i+':00AM-'+(++i)+':00AM');
    if(count>=12)
        system.debug(i+':00PM-'+(++i)+':00PM');
    
}
}