O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
#include<stdio.h> int main() { int days,week; printf("Enter the Number of Days "); scanf("%d",&days); week=days/7; days=days%7; printf("%d week and %d days ",week,days); return 0; }
▶ Run Code
🖥 Output: