C++/Overload/Underflow — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Текущая версия на 10:28, 25 мая 2010
Overflow and Underflow
#include <iostream>
using namespace std;
int main(void)
{
short testScore;
testScore = 32768;
cout << "Your test score is " << testScore << "\n";
return 0;
}