Computer Science, asked by marwaalr, 1 year ago

Write an algorithm to accept the total number of days and print it in months and days .
What the answer of this question?

Answers

Answered by singhbabita8128
0

what do you mean by the question.. if you cant explain than try it by yourself......

Answered by kaushikhardik35
1

while(days>1)

{

a=days/30;

days=days%30;

a=days/31;

days=days%31;


Similar questions