This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#define MAXN 3 | |
#define MAXM 10 | |
int A(int n, int m) // собственно наша функция. сразу замечу что смысла в ней | |
{ // я не нашел, она просто делает то что сказано в условии. | |
if(n==0) { // первая строчка условия. если n=0 | |
return m + 1; // то значение функции это m+1 |
NewerOlder