-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinput.txt
More file actions
45 lines (43 loc) · 923 Bytes
/
input.txt
File metadata and controls
45 lines (43 loc) · 923 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
class test {
private:
int a;
int b;
float c;
public:
int Asia;
int func1(int arg1, int arg2);
float func2(float arg3, float arg4) {
int array[10];
float temp = 0.456;
if (temp != 4) {
int super = 2;
super = super * 7;
return c;
}
}
};
int test::func1(int arg1, int arg2) {
int param = 10;
for (param; param == 10; param + 1) {
if (param == 10) {
float var1 = 3.1415;
}
do {
int star = 5;
} while(var1 > 2.3);
}
return param;
}
int main() {
test t1;
int intnum = 99;
float floatnum = 2.45;
while (intnum <= 100) {
test t2;
int skku[999];
t2.c = 2.3333;
intnum = t1.func1(2,4);
floatnum = t1.func2(WEIMING, YANG);
}
return 0;
}