Given a Program Design Language (PDL) for finding maximum value
:
START
int A,B,C,MAX,MIN;
INPUT ”A Value : ";
INPUT ” B Value : ";
INPUT ”C Value : ";
IF ( A>B )
IF ( A>C )
Max = A;
ELSE
Max
= C;
ENDIF
ELSE IF ( B>C )
Max = B;
ELSE Max = C;
ENDIF
ENDIF
CETAK "Print Maximum : ", Max;
END
Please create the flowgraph and find the cyclometic
complexity
Given a Program Design Language (PDL) for finding maximum value : START int A,B,C,MAX,MIN; INPUT ”A Value : "; INPUT ”
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Given a Program Design Language (PDL) for finding maximum value : START int A,B,C,MAX,MIN; INPUT ”A Value : "; INPUT ”
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!