Skip to content

Instantly share code, notes, and snippets.

View Salomon-MH's full-sized avatar
🌍
Software developer from Germany

Daniel Salomon Salomon-MH

🌍
Software developer from Germany
View GitHub Profile
@Salomon-MH
Salomon-MH / Klausur_15_Task_7.c
Created April 15, 2018 13:35
Klausur 15 Task 7
// S -> b {T.A = S.A -1} T {U.A = T.B} U {S.B = U.B}
// T -> {S.A = T.A } S {U.A = S.B} U {T.B = U.B}
// T -> e {T.B = T.A}
// U -> a {S.A = U.A +2} S {U.A = S.B} U {U.B = U.B}
int X;
main() {
SCANNER(X);
S(S_A);