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 C++ with SFML, OpenGL and Unreal Engine."       << 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;
}

Pinned Loading

  1. MinhaLista MinhaLista Public

    Site para criar sua lista de anime e manga utilizando PHP e MySQL

    PHP 2

  2. Sistema-de-Estoque Sistema-de-Estoque Public

    Sistema de estoque utilizando a linguagem C.

    C 1

  3. SFML-Journey SFML-Journey Public

    My journey learning SFML and game development

    C++

  4. LeetCode-Solutions LeetCode-Solutions Public

    Resolução dos problemas do LeetCode em C++

    C++ 1

  5. Casa-do-Microondas Casa-do-Microondas Public

    Site de uma assistência técnica de microondas utilizando React, Node.js e MySQL

    JavaScript 1 2

  6. Warehouse-Wreckage Warehouse-Wreckage Public

    First project in Unreal Engine with Blueprints