Submission #15241

# Submission time Handle Problem Language Result Execution time Memory
15241 2015-07-12T04:25:11 Z ttgame 분배 (kriii3_Q) C++
Compilation error
0 ms 0 KB
#include <iostream>
#include <cstring>
using namespace std;
int main(void)
{
	
	
	int N=1;
	int K=1;
	int Z=1;
	
	cin >> N >> K;
	
	Z = (1 << (N - K));
	N = (1 << N);
	K = (1 << K);
	

	
	
	

	for (int i = 0; i < K; i++)
	{
		
		for (int j = 0; j < Z; j++)
		{
			
			if (j % 2 == 0)
			{
				int n = (j / 2) * 4 + i;
				printf("%d ", n);
				
			}
			else
			{
				int q = ((j + 1) / 2) * 4 - 1 - i;
				printf("%d ", q);
			}

			
			
		}
		printf("\n");
	}
	

	
}

Compilation message

Q.cpp: In function ‘int main()’:
Q.cpp:32:20: error: ‘printf’ was not declared in this scope
     printf("%d ", n);
                    ^
Q.cpp:38:20: error: ‘printf’ was not declared in this scope
     printf("%d ", q);
                    ^
Q.cpp:44:14: error: ‘printf’ was not declared in this scope
   printf("\n");
              ^