Skip to content
View ThiagoIanuch's full-sized avatar

Highlights

  • Pro

Block or report ThiagoIanuch

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ThiagoIanuch/README.md
#include <iostream>

class Profile {
    private:
        std::string name;
        int         age;
        std::string location;

    public:
        Profile(std::string name, int age, std::string location) {
            this->name     = name;
            this->age      = age;
            this->location = location;
        }

        void introduce() {
            std::cout << "Name:     " << name     << std::endl;
            std::cout << "Age:      " << age      << std::endl;
            std::cout << "Location: " << location << std::endl;

            std::cout << "==================================================================================" << std::endl;
            std::cout << "Welcome to my profile!"                                                             << std::endl;
            std::cout << "I am in the 4th semester of Computer Science."                                      << std::endl;
            std::cout << "Currently learning game development with C++, using Unreal Engine, SFML and OpenGL" << std::endl;
            std::cout << "Also studying Japanese and currently at N5 level."                                  << std::endl;
            std::cout << "==================================================================================" << std::endl;
        }
};

int main()
{
    Profile profile("Thiago Ianuch", 21, "Curitiba - Brazil");

    profile.introduce();

    return 0;
}



My Itch.io:

Pinned Loading

  1. MinhaLista MinhaLista Public

    Site to create your anime and manga list using PHP and MySQL

    PHP 1

  2. Obstacle-Assault Obstacle-Assault Public

    Third-person obstacle course game developed in Unreal Engine 5 with C++

    C++ 1

  3. Casa-do-Microondas Casa-do-Microondas Public

    Microwave technical assistance website using React, Node.js and MySQL

    JavaScript 2

  4. SFML-Journey SFML-Journey Public

    My journey learning SFML and game development with C++

    C++

  5. Sistema-de-Estoque Sistema-de-Estoque Public

    Inventory system using the C language.

    C

  6. LeetCode-Solutions LeetCode-Solutions Public

    My solutions to LeetCode problems in C++

    C++