![]() |
#2
rjsp2012-07-28 08:12
|
#include <iostream>
#include <Windows.h>
using namespace std;
int main(void)
{
system("cls");
cout << 3.14e1L << '\n';
cout << 3.14uL << endl;
system("pause");
return 0;
}
各位目测下 上面的两个cout合法吗?