answersLogoWhite

0

Ithnayn

Thulaathaa°

Irbi'aa°

Khamees

Jumu'a

Sabt

Ahad

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you you write an expression for number of days in 4 weeks?

7x4=28 days


How do you write a ratio to compare these amounts 5 days to 3 weeks?

3 weeks = 3*7 = 21 days. So 5 days to 3 weeks = 5 days to 21 days = 5:21


How do you write Eliza in Arabic?

how to write Alizah in Arabic


What does the word Jabal mean?

The word Jabal means mountains in arabic. More people are learning the arabic language these days. the arabic language is very difficult to read and write making it difficult to learn.


How do you write 3 in Arabic?

teletti is word for 3 \ can't write it in arabic without arabic keyboard


How do you write an expression for the number of days in w weeks?

To express the number of days in ( w ) weeks, you can use the formula ( \text{Days} = 7w ). This is because each week consists of 7 days. Therefore, by multiplying the number of weeks ( w ) by 7, you obtain the total number of days.


Who to write topic in Arabic?

topic in arabic


How do you say i am is in Arabic?

I am = ana ( in Arabic ). And in Arabic you write it this way : أنا


What is 25 weeks?

175 days(hope that is the answer to your question or else write your question better).


How do you write Jada in Arabic?

To write the name Jada in Arabic, it would be spelled جايدا.


How do you write Zakat in Arabic?

زكاة


Write a C plus plus program to convert a given number into years weeks and days?

#include<iostream> void num_to_years_weeks_days( unsigned num, unsigned& years, unsigned& weeks, unsigned& days) { years = num / 365; num -= years * 365; weeks = num / 7; num -= weeks * 7; days = num; } int main() { unsigned years, weeks, days; unsigned num = 1000; num_to_years_weeks_days(num, years, weeks, days); std::cout << num << " days is " << years << " years, " << weeks << " weeks and " << days << " days\n" << std::endl; num = 12345; std::cout << num << " days is " << years << " years, " << weeks << " weeks and " << days << " days\n" << std::endl; }