العرض النهائي

Sedrah Sadah

أوجد واجمع الأرقام

Sedra sada

#include<iostream>

using namespace std;

int main()

{

    cout << "Are you ready to play" << endl;

    string x;

    cin >> x;

    if (x == "yes")

    {

        cout << "Let's Play" << endl;

        cout << "Please write a number(Sedra) :" << endl;

        int w;

        cin >> w;

        cout << "Please enter 3 numbers:::" << endl;

        int q, e, r;

        cin >> q;

        cin >> e;

        cin >> r;

        int s = q + r + e;


        if (w == s)

        {

            cout << "You are the winner" << endl;

        }

        else

        {

            cout << "You are loser" << endl;

            cout << "Try again" << endl;

        }

    }

    else

    {

        cout << "see you next time " << endl;

    }

}