#include <iostream>
using namespace std;
void signature() {
cout << "\n┏┓╻┏━╸╻ ╻┏━╸┏━┓ ┏━┓┏━╸╺┳╸╺┳╸╻ ┏━╸"
"\n┃┗┫┣╸ ┃┏┛┣╸ ┣┳┛ ┗━┓┣╸ ┃ ┃ ┃ ┣╸ "
"\n╹ ╹┗━╸┗┛ ┗━╸╹┗╸ ┗━┛┗━╸ ╹ ╹ ┗━╸┗━╸";
}
struct stPersonInfo {
string firstName;
string lastName;
};
string readString(string message) {
string stringToRead = "";
cout << message;
getline(cin, stringToRead);
return stringToRead;
}
stPersonInfo readPersonInfo() {
stPersonInfo personInfoToRead;
personInfoToRead.firstName = readString("enter your first name: ");
personInfoToRead.lastName = readString("enter your last name: ");
return personInfoToRead;
}
void printString(string stringToPrint) { cout << stringToPrint << endl; }
void printGreeting(stPersonInfo personToPrint) {
string greeting = "hello" + personToPrint.firstName + " " +
personToPrint.lastName +
"\nThis is my GitHub, feel free to get in touch!";
printString(greeting);
}
int main() {
printString("Wellcome user!");
printGreeting(readPersonInfo());
signature();
return 0;
}
Pinned Loading
-
WebGL-galaxy-generator
WebGL-galaxy-generator PublicGalaxy generator using Three.js and custom GLSL shader in WebGL
JavaScript
-
-
FoucsFlow
FoucsFlow Publica full-stack To-Do & Notes app with user accounts, categories, and a neumorphic UI, built using React, TypeScript, .NET Core API, and PostgreSQL.
C#
-
ThemeEngineDemo
ThemeEngineDemo PublicA demo for my google's material you theme engine library for windows forms in .NET framework
C#
-
DVLD
DVLD PublicA full-stack desktop application system to manage driving and vehicle department. Made with Windows forms and SQL server
C#
-
MBL
MBL Publica full-stack desktop application to manage and track user's own books. Made with Windows forms and SQL server
C#
If the problem persists, check the GitHub status page or contact support.