Computer Science, asked by stanleypaul081, 14 hours ago

write a programme to convert any numbers to days and weeks ​

Answers

Answered by harshasantosh143hs
1

Answer:

main ()                                                      

  {                                                            

      int   months, days ;                                    

                                                               

      printf("Enter days\n") ;                                

      scanf("%d", &days) ;                                    

                                                               

      months = days / 30 ;                                    

      days   = days % 30 ;                                    

                                                               

      printf("Months = %d   Days = %d", months, days) ;        

  }                                

Explanation:

Answered by AbhishekThakkar
0

Answer:

answer is 7

I hope it will help you

Similar questions