-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode.c
More file actions
54 lines (54 loc) · 686 Bytes
/
Code.c
File metadata and controls
54 lines (54 loc) · 686 Bytes
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
int a=2.0;
double B=3.0;
float c=5.0;
string d="salut";
a=10.0;
a=b*2.0;
print(b);
if(a*2.0>=2.0)
{
if(a*2.0>=2.0)
{
print("badas");
a=20.0;
}
}
for(int i=0.0;i==2.0;i=i*1.0)
{
for(int i=0.0;i==2.0;i=i*1.0)
{
print(i);
}
}
switch(a)
{
case 2.0:
switch(a)
{
case 2.0:
print(2.0);
break;
case 3.0:
print(a);
a=a*2.0;
break;
case default:
print(b);
break;
}
break;
case 3.0:
print(a);
a=a*2.0;
break;
case default:
print(b);
break;
}
while(i<=5.0)
{
while(i<=5.0)
{
print(d);
}
}