Added programs for 2nd half of assignment

This commit is contained in:
2025-05-01 15:05:04 +09:00
parent 0805e15bb9
commit 08b885e397
18 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include <stdio.h>
int main(void) {
int n;
double x;
printf("Int n: "); scanf("%d", &n);
printf("Doble n: "); scanf("%f", &x);
printf("Integer n is %d\n", n);
printf("Double percision floating point decimal x is %f\n", x);
return 0;
}