This commit is contained in:
2024-03-26 11:15:25 +03:00
parent 4ecfebcd1b
commit 04d946e28c
38 changed files with 91 additions and 0 deletions

BIN
DeitelC/Chapter4/a.exe Normal file

Binary file not shown.

14
DeitelC/Chapter4/sum99.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
#include <math.h>
int main(void) {
int sum = 0;
int count = 1;
for(;count<=99;count+=2) {
sum += count;
}
printf("%d\n", sum);
printf("%.2f\n", pow(2.5,3));
return 0;
}