ما هو الخطأ فى هذا الكود | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

ما هو الخطأ فى هذا الكود

#include <iostream> using namespace std; int main() { int id , password; cin>> id >> password; if(id ==1212 && password == 123){ cout <<"you arelogged in"; }else { cout << "id or password is wron"; } return 0; }

16th Aug 2021, 12:21 PM
Shehap Khalaf Kamel
2 Antworten
0
When the input dialog show up, provide all necessary input in the beginning, before running the program, each value should be in separate line. For example (in input dialog) 1212 123 Click "Submit" button
16th Aug 2021, 1:11 PM
Ipang
0
انا لسة مبدا برمجة من فضلكم لو اى حد يساعدنى فى التعلم
16th Aug 2021, 12:22 PM
Shehap Khalaf Kamel