1
0
This commit is contained in:
2025-10-10 02:17:07 +02:00
commit ee9f86004b
48 changed files with 2161 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "smt4497-P2.h"
int p2_classes()
{
ss::Crono crono;
crono.Inicio();
Sleep(10000);
double segs = crono.Lee();
printf("Segundos: %f\n", segs);
return 0;
}