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

Latest commit

 

History

History
47 lines (36 loc) · 735 Bytes

003.md

File metadata and controls

47 lines (36 loc) · 735 Bytes

ngduvie

informational

ngduvie

#include<stdio.h> #include<conio.h> void main () { int a, b; char dv, chuc, tram; clrscr (); printf ("Nhap so bi nhan co 3 chu so a="); scanf ("%d", &a); printf ("Nhap so nhan co 3 chu so b="); scanf ("%d", &b); dv = b % 10; chuc = b % 100 / 10; tram = b / 100; printf ("\nMo phong phep nhan tay\n\n"); printf ("%20d\n", a); printf ("%15c%5d\n", 'x', b); printf ("%20s\n", "-------"); printf ("%20d\n", a * dv); printf ("%19d\n", a * chuc); printf ("%18d\n", a * tram); printf ("%20s\n", "-------"); printf ("%20ld\n", long (a) * b); getch ();

}

Summary

Vulnerability Detail

Impact

Code Snippet

Tool used

Manual Review

Recommendation