Stepan hace 2 meses
padre
commit
71069f1150
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      c/l3.c

+ 11 - 0
c/l3.c

@@ -0,0 +1,11 @@
+#include <stdio.h>
+int main() {
+    int pol1;
+    printf("First number ");
+    scanf("%d", &pol1);
+    int pol2;
+    printf("Second number ");
+    scanf("%d", &pol2);
+    int x = pol1*pol2;
+    printf("Square: %d\n", x);
+}