Files
Software-Analysis/tests/Example1.java

31 lines
520 B
Java
Raw Normal View History

2025-12-04 18:41:14 -07:00
public class Example1 {
2025-12-15 18:06:48 -07:00
// public void test() {
// int x = 5;
// int y = x + 10;
// int z = y * 2;
// int result = z + x;
// }
// public void test1(int a) {
// int x = 5;
// int y = 0;
2025-12-04 18:41:14 -07:00
2025-12-15 18:06:48 -07:00
// if (a > 10) {
// y = x + a;
// } else {
// y = x - a;
// }
2025-12-04 18:41:14 -07:00
2025-12-15 18:06:48 -07:00
// int result = y * 2;
// }
2025-12-04 18:41:14 -07:00
public void test2() {
int sum = 0;
int i = 0;
while (i < 10) {
2025-12-15 18:06:48 -07:00
i = 2;
2025-12-04 18:41:14 -07:00
sum = sum + i;
i = i + 1;
}
}
}