StringStream

Sort by

recency

|

525 Discussions

|

  • + 0 comments

    include

    include

    using namespace std;

    int main() {

    string s;
    cin >> s;
    
    
    for (char c : s) {
        if (c == ',') {
            cout << '\n';
        } else {
            cout << c; 
        }
    }
    
    return 0;
    

    }

  • + 0 comments

    check out the full Tim Hortons menu here: https://timhortonsmenus.com/

  • + 0 comments

    Staying on top of your student loans is easier with Aidvantage! ✅ Access your account, manage payments, and get the support you need. Log in now at https://aidvantagelogin.info to simplify your loan management.

  • + 0 comments

    Love tracking your top songs and artists? 🎶 Receiptify turns your music history into a fun, receipt-style image that’s perfect for sharing! Check it out here: https://receiptifyy.com/ and see your personalized music receipt today!

  • + 0 comments

    Here is my C++ Code for Cook's Simple Painting

    -switch(choice) {
        case 1: cout << "You chose option 1"; break;
        case 2: cout << "You chose option 2"; break;
        case 3: cout << "You chose op)tion 3"; break;
        default: cout << "Invalid choice"; break;
    }
    return 0;