Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab4(137)

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-25T16:52:55Z

Updated

2018-10-25T16:52:55Z

#include <iostream>
using namespace std;

int main() {
    unsigned int a, b;
    float c, d;
    cin>>a>>b>>c>>d;
    if(a%b==c || a%b==d){
       cout << "Верно";
    } else{
    cout << "Неверно";
    }
    return 0;
}
INFO