#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;
}
Computer Science Student
- Brazil
-
20:10
(UTC -03:00) - in/thiagoianuch
- https://thiagoianuch.itch.io/
- @ThiagoIanuch
Highlights
- Pro
Pinned Loading
-
-
Obstacle-Assault
Obstacle-Assault PublicThird-person obstacle course game developed in Unreal Engine 5 with C++
C++ 1
-
Casa-do-Microondas
Casa-do-Microondas PublicMicrowave technical assistance website using React, Node.js and MySQL
JavaScript 2
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.