صحح الكود #include iostream#include stringusing namespace std;int main string name; int age; string gamal; float Revisionist; cout Enter your name ; getlinecin name; cout The family; cin gamal; cou
#include
int main() { string name; int age; string gamal; float Revisionist; cout << "Enter your name: "; getline(cin, name); cout << "The family:"; cin >> gamal; cout << "Enter your age: "; cin >> age; cout << "Revisionist?"; cin >> Revisionist;
cout << "Name: " << name << endl;
cout << "Age: " << age << endl;
cout << "The family: " << gamal << endl;
cout << "Revisionist: " << Revisionist << endl;
cout << "🥰thank you🥰 " << name;
return 0;
}
原文地址: https://www.cveoy.top/t/topic/i7gu 著作权归作者所有。请勿转载和采集!