#include "cielib.h"
#include <stdlib.h>
using namespace std;
int main()
{
int d = podajD();
int k = podajK();
int r = podajR();
int* pos = new int[d];
for (int i = 0; i < d; i++) pos[i] = 0;
znalazlem(pos);
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include "cielib.h" #include <stdlib.h> using namespace std; int main() { int d = podajD(); int k = podajK(); int r = podajR(); int* pos = new int[d]; for (int i = 0; i < d; i++) pos[i] = 0; znalazlem(pos); return 0; } |
English