Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (32 loc) · 656 Bytes

005.md

File metadata and controls

41 lines (32 loc) · 656 Bytes

huynhnam

informational

huynhnam

#include <stdio.h>

#include <conio.h> void main () { int t, t100, t20, t5; clrscr (); printf ("Nhap so tien t="); scanf ("%d", &t); t100 = t / 100; t -= 100 * t100; t20 = t / 20; t -= 20 * t20; t5 = t / 5; t -= 5 * t5; printf ("So to cac loai menh gia la :\n"); printf ("Loai 100 : %d to\n", t100); printf ("Loai 20 : %d to\n", t20); printf ("Loai 5 : %d to\n", t5); printf ("Loai 1 : %d to\n", t); printf ("Tong so to cac loai la : %d\n", t + t5 + t20 + t100); getch (); }Summary

Vulnerability Detail

Impact

Code Snippet

Tool used

Manual Review

Recommendation