feat: Initial commit

This commit is contained in:
2024-03-22 17:14:57 +01:00
parent dc83234df1
commit db9bafe755
45 changed files with 1996 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main(void)
{
int x, y;
float z;
printf("Insert an integer number:");
scanf("%d", &x);
y = 3;
z = (float)(x) / y;
printf("%d/%d=%.3f\n", x, y, z);
return 0;
}