add l3.c
This commit is contained in:
parent
c20e5f2d58
commit
71069f1150
1 changed files with 11 additions and 0 deletions
11
c/l3.c
Normal file
11
c/l3.c
Normal file
|
|
@ -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);
|
||||
}
|
||||
Loading…
Reference in a new issue