Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 25 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ int main()
}

```
```

#include <iostream>

using namespace std;
Expand All @@ -94,8 +94,32 @@ int main() {
cout<<"thanks alosefer "<< "all "<< y <<" day";

}

```

...

#include <iostream>
using namespace std;

int main()
{

int x = 25 ;
int z = 26 ;
int w = 27 ;

if ( x == 25 )
if ( z == 26 )
if ( w == 27 ){

cout << "Yes is eid days" << endl;
}

}

...

## kotlin
```
package Eid
Expand Down Expand Up @@ -164,28 +188,6 @@ else:
print ('Happy Eid Too ^_^ ')
```

New Python Code
```


#Fahad Alsubaie @FahadMIT
import time
import os
MessageBeforeEid = "The Eid will coming"
today = time.strftime("%d/%m/%Y")
EidTime= "25/06/2017"
user= os.popen('whoami').read()
EidMessage = ("Happy Eid :) Mr." + '%s' %user)
if today < EidTime:
print (MessageBeforeEid)
elif today == EidTime:
print (EidMessage)
elif today > EidTime:
print ('Today is ''%s'' You miss the Eid'%today)
else:
quit()
```


## javascript
```
Expand Down