first commit

This commit is contained in:
2022-07-12 23:35:26 +05:00
parent 3e8fe18c26
commit 0b3827ae66
16 changed files with 187 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include"stdio.h"
#include <iostream>
int main()
{
int n = 3, m = 3;
setlocale(LC_ALL, "Russian");
printf("çíà÷åíèå: %d\n", n++ + m);
printf("çíà÷åíèå: %d\n", n-- >m);
printf("çíà÷åíèå: %d\n", m-- > n);
return 0;
}