Name: Anonymous 2010-09-04 13:34
String newline = System.getProperty("line.separator");
String newline = System.getProperty("line.separator");
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main() {
ostringstream oss;
oss << endl;
string newline = oss.str();
return 0;
}