נשלח בתאריך: 03 March 2007 בשעה 02:50 | | IP רשוּם
|
|
|
|
1.הורדתי את הקוד הזה מאיזה אתר אבל זה עושה לי שגיאה ואני לא מצליח להריץ אותו
#include <iostream>
int main()
{
int a; // input location for first operand.
int b; // input location for second operand.
int sum; // result of a + b;
cin >> a; // read first operand from keyboard.
cin >> b; // read second operand from keyboard.
sum = a + b;
cout << "The Sum of " << a << " And " << b <<" Is: ";
cout << sum << endl;
system ("pause");
}
וחוץ מיזה אני לא מצליח להוריד מפה את המדריך לc++
משהו יכול להביא לי את המדריך ל txt?
כי זה עושה לי שגיאה אם "pdf"
|