mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-28 13:44:02 +08:00
11 lines
159 B
C++
11 lines
159 B
C++
|
#include <sstream>
|
||
|
int main(int, char*[])
|
||
|
{
|
||
|
std::ostringstream os;
|
||
|
os << "12345";
|
||
|
if (os.str().size() == 5) {
|
||
|
return 0;
|
||
|
}
|
||
|
return -1;
|
||
|
}
|