Put everything in folders

This commit is contained in:
2015-10-14 02:01:48 +02:00
parent 66424386af
commit 5f40a4bfe1
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include <stdio.h>
int main()
{
float nr1, nr2;
printf("First number: ");
scanf("%f", &nr1);
printf("Second number: ");
scanf("%f", &nr2);
printf("Total: %.2f\n", nr1+nr2);
printf("Average: %.2f\n", (nr1+nr2)/2);
return 0;
}