From a4fa449622f60f60fbb417288140446a1c7bede0 Mon Sep 17 00:00:00 2001 From: Jakub Walas <s204451@student.pg.edu.pl> Date: Mon, 24 Feb 2025 08:31:09 +0000 Subject: [PATCH] Upload New File --- 1.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 1.c diff --git a/1.c b/1.c new file mode 100644 index 0000000..1512c65 --- /dev/null +++ b/1.c @@ -0,0 +1,12 @@ +#include<stdio.h> + +int main(){ + + printf("Hello World!\n"); + float x; + printf("Podaj wartosc x\n"); + scanf("%f",&x); + printf("Suma x+x=%.2f\n",x+x); + + return 0; +} -- GitLab