Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: winwin1054
Problemset: เส้นทางคณิตศาสตร์
Language: cpp
Time: 0.002 second
Submitted On: 2026-03-31 16:07:43
#include <bits/stdc++.h>
using namespace std;
int main() {
int x,y,z;
cin >> x >> y >> z;
if(z==1) cout << x+y;
else if(z==2) cout << x-y;
else if(z==3) cout << x*y;
else if(z==4&&y!=0) cout << x/y;
else if(z==5&&y!=0) cout << x%y;
else cout << "cannot divide by zero";
}