-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include<stdio.h> | ||
int main() | ||
{ | ||
printf("Recently I heard that you've achieved 95%% marks in your exam\nThis is brilliant!\nI wish you'will shine in your life!\tGood luck with all the barriers(/\\) in your life"); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include<stdio.h> | ||
int main() | ||
{ | ||
float a=5.0,b=2; | ||
float dvd=a/b; | ||
printf("%f",dvd); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#include<stdio.h> | ||
int main() | ||
{ | ||
int n; | ||
scanf("%d",&n); | ||
if(n%2==0) | ||
{ | ||
printf("Even"); | ||
} | ||
else | ||
{ | ||
printf("Odd"); | ||
} | ||
return 0; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
int n; | ||
scanf("%d", &n); | ||
if (n > 0) | ||
{ | ||
printf("positive"); | ||
} | ||
else if (n < 0) | ||
{ | ||
printf("negative"); | ||
} | ||
else | ||
{ | ||
printf("zero"); | ||
} | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
int tk; | ||
scanf("%d", &tk); | ||
if (tk >= 10000) | ||
{ | ||
printf("Gucci Bag\n"); | ||
|
||
if (tk > 20000) | ||
{ | ||
printf("Gucci belt\n"); | ||
} | ||
} | ||
|
||
else if (tk >= 5000) | ||
{ | ||
printf("levis bag\n"); | ||
} | ||
|
||
else | ||
printf("something\n"); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
int a = 20, b = 30; | ||
int dvd = b/a; | ||
printf("%d", dvd); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
int tk; | ||
scanf("%d", &tk); | ||
if (tk >= 100) | ||
{ | ||
printf("Burger khabo"); | ||
} | ||
else | ||
{ | ||
printf("kichu khabo"); | ||
} | ||
return 0; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
int tk; | ||
scanf("%d",&tk); | ||
if (tk >= 100) | ||
{ | ||
printf("Burger khabo"); | ||
} | ||
else if (tk >= 50) | ||
{ | ||
printf("Ice cream khabo"); | ||
} | ||
else if (tk >= 30) | ||
{ | ||
printf("fuchka khabo"); | ||
} | ||
else | ||
{ | ||
printf("kichu khabo na"); | ||
} | ||
return 0; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include<stdio.h> | ||
int main() | ||
{ | ||
int tk; | ||
scanf("%d",&tk); | ||
if (tk>=5000) | ||
{ | ||
printf("Cox's Bazar jabo\n"); | ||
|
||
if(tk>=10000) | ||
{ | ||
printf("Saint Martin jabo\n"); | ||
} | ||
else | ||
{ | ||
printf("ferot ashbo\n"); | ||
} | ||
} | ||
else | ||
{ | ||
printf("kothao jabo na\n"); | ||
} | ||
return 0; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
100 |
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.