هذا برنامج c++ بسيط يقوم بطباعة hello world عشرة مرات لكنه لا يعمل هل تعرف لماذا؟
#include <iostream>
using namespace std;
int main(){
for (int i = 0; i < 10; i++){
cout << "Hello, World!" << endl;
}
return 0;
}
هذا رمز علامة السؤال ( Greek Question Mark ) ـ Unicode U+037E
يختلف عن الفاصلة المنقوطة ( Semicolon ) ـ Unicode U+003B
line 1 #include
using namespace std;
int main(){
for (int i = 0; i < 10; i++){
cout << "Hello, World!" << endl;
}
return 0;
}
انسخ هادا الكود عندما نسخت الكود الخاص بك على ال Compiler الخاص بي
ظهرت رموز غريبة
using namespace std;
int main(){ for (int i = 0? i < 10; i++){ cout << "Hello, World!" << endl; } return 0?
}
وهي اشارتي إستفهام
التعليقات