mirror of
https://github.com/crystalidea/qt-build-tools.git
synced 2025-02-03 11:47:42 +08:00
11 lines
150 B
C++
11 lines
150 B
C++
|
#include <sstream>
|
||
|
int main(int, char* [])
|
||
|
{
|
||
|
std::ostringstream os;
|
||
|
os << "12345";
|
||
|
if (os.str().size() == 5) {
|
||
|
return 0;
|
||
|
}
|
||
|
return -1;
|
||
|
}
|