Made a simple geometric workbench

This commit is contained in:
2015-10-16 23:15:01 +02:00
parent 614d8aa3c8
commit ad9b6457e0
6 changed files with 82 additions and 0 deletions

11
misc/text1.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main()
{
int c, i, j;
scanf("%d%d%d", &c, &i, &j);
printf("\n%d\n%d\n%d\n", c, i, j);
return 0;
}