Работы по программированию

This commit is contained in:
IgorVolochay
2026-07-28 09:56:54 +03:00
parent b85155ff95
commit 8602b7e845
73 changed files with 4090 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
1.Даны целочисленные переменные А и В. Найти их сумму и вывести на экран.
*/
#include <stdio.h>
int getSum(int a, int b) {
return a + b;
}
int main() {
const int A = 3;
const int B = 8;
printf("Sum: %d", getSum(A, B));
return 0;
}