Quick actions

cmd+k|ctrl+k

Navigation

Languages

think-like-a-programmer

Snippet info

Language

Cpp

Visibility

public

Author

chris.psmv

Created

2020-05-17T13:17:25Z

Updated

2020-05-17T13:17:25Z

#include <iostream>

using namespace std;

int main() {
    string founderName = "Chris";
    int year;
    year = 2019;
    
    cout << "SamX Studios is founded in " << year << endl;
    cout << "The only founder of the company is " << founderName << "." << endl;
    
    year = 2020;
    cout << year << " was when Corona-virus was destroying the whole world.";
}
INFO