Submission

Status:

PPPP-PPP--

Subtask/Task Score:

70/100

Score: 70

User: Wkraxcker

Problemset: เส้นทางคณิตศาสตร์

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-15 11:37:14

#include <bits/stdc++.h>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    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){
        if(y==0){cout<<"cannnot divided by zero";
        }
        else cout<<x/y;
    }
    else if(x==5){if(y==0){cout<<"cannnot divided by zero";}
else cout<<x%y;}
}