-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lecture7 ConditionalStatements2.c
80 lines (63 loc) · 1.23 KB
/
Lecture7 ConditionalStatements2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <stdio.h>
#include <stdlib.h>
//Written by Bunyamin Yavuz in 2022
// Conditional statements 2
int main()
{
/*
<-------General Structure of conditional statement------->
if (test - expression 1)
{
statement1;
}
else if (test - expression 2)
{
Statement2;
}
else if (test - expression 3)
{
Statement3;
}
else if (test - expression n)
{
statement n;
}
else
{
default;
}
*/
/*
<---Some basic operators in C--->
Mod operator --> %
And operator --> &&
Or operator --> ||
*/
// First program (even or odd)
int number;
printf("Enter a number: ");
scanf("%d",&number);
if(number % 2 == 0 )
{
printf("Number %d is even",number);
}
else
{
// number % 2 == 1
printf("Number %d is odd",number);
}
// Second program (common divisor)
int number1;
printf("Enter a number: ");
scanf("%d",&number1);
if(number1 % 5 == 0 && number1 % 3 == 0 )
{
printf("Number %d is = 15k",number1);
}
else
{
// number % 2 == 1
printf("Number %d is not = 15k",number1);
}
return 0;
}