Submission #16952

# Submission time Handle Problem Language Result Execution time Memory
16952 2015-11-02T08:32:05 Z taehoon1018 MathWorlds (YDX13_mathworlds) C++
Compilation error
0 ms 0 KB

int main(void)
{
	double long x, y, z, count = 0;
	char ch;

	scanf("%d%d%d", &x, &y, &z);

	if (x + y == z)
	{
		count++;
		ch = '+';
	}
	if (x - y == z)
	{
		ch = '-';
		count++;
	}
	if (x*y == z)
	{
		ch = '*';
		count++;
	}
	if (x / (float)y == z)
	{
		count++;
		ch = '/';
	}

	if (count == 1)
		printf("%c", ch);
	else
		printf("Invalid");

}

Compilation message

D.cpp: In function ‘int main()’:
D.cpp:8:28: error: ‘scanf’ was not declared in this scope
  scanf("%d%d%d", &x, &y, &z);
                            ^
D.cpp:32:18: error: ‘printf’ was not declared in this scope
   printf("%c", ch);
                  ^
D.cpp:34:19: error: ‘printf’ was not declared in this scope
   printf("Invalid");
                   ^