modified codes

This commit is contained in:
2025-05-04 05:59:50 +00:00
parent 08b885e397
commit 64c4a1af4d
25 changed files with 91 additions and 22 deletions

View File

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