51522023-04-20 17:12:28MarkopoloOszthatóság 31-gyelcpp11Wrong answer 0/503ms4072 KiB
#include <iostream>

using namespace std;
void szamol(int &n)
{
    int x,m;
    if(n<=0)
    {
        cout<<"";
    }
    else
    {
        m=n%10;
        n=n/10;
        x=n-(3*m);
        n=x;
        szamol(n);
    }
}
void szamoll(int n)
{
    int x,m;
    if(n<=0)
    {
        cout<<"";
    }
    else
    {
        m=n%10;
        n=n/10;
        x=n-(3*m);
        n=x;
        if(n>=0)
            cout<<n<<" ";
        szamoll(n);
    }
}
int main()
{
    int n,b;
    cout << "Add meg a szamot, es en leellenorzom, h oszthato-e harminc egyel!" << endl;
    cin>>n;
    b=n;
    szamol(n);
    if(n<=0)
    {
        if(n==0)
            cout<<"IGEN"<<endl;
        if(n<0)
            cout<<"NEM"<<endl;
    }
    szamoll(b);
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base0/50
1Wrong answer0/03ms1876 KiB
2Wrong answer0/03ms2116 KiB
3Wrong answer0/33ms2280 KiB
4Wrong answer0/33ms2512 KiB
5Wrong answer0/43ms2692 KiB
6Wrong answer0/42ms2728 KiB
7Wrong answer0/43ms2856 KiB
8Wrong answer0/43ms3072 KiB
9Wrong answer0/42ms3304 KiB
10Wrong answer0/42ms3428 KiB
11Wrong answer0/42ms3508 KiB
12Wrong answer0/42ms3636 KiB
13Wrong answer0/42ms3852 KiB
14Wrong answer0/42ms3936 KiB
15Wrong answer0/22ms4072 KiB
16Wrong answer0/23ms4056 KiB