Submission #16953

# Submission time Handle Problem Language Result Execution time Memory
16953 2015-11-02T08:36:25 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)
	{
		if (y != 0)
		{
			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:35:18: error: ‘printf’ was not declared in this scope
   printf("%c", ch);
                  ^
D.cpp:37:19: error: ‘printf’ was not declared in this scope
   printf("Invalid");
                   ^