Skip to content
View CSXV's full-sized avatar
PEAK
PEAK

Block or report CSXV

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 250 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
CSXV/README.md
#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

  1. WebGL-galaxy-generator WebGL-galaxy-generator Public

    Galaxy generator using Three.js and custom GLSL shader in WebGL

    JavaScript

  2. WebGL-sea-generator WebGL-sea-generator Public

    Three.js WebGL sea simulation generator

    JavaScript 1

  3. FoucsFlow FoucsFlow Public

    a full-stack To-Do & Notes app with user accounts, categories, and a neumorphic UI, built using React, TypeScript, .NET Core API, and PostgreSQL.

    C#

  4. ThemeEngineDemo ThemeEngineDemo Public

    A demo for my google's material you theme engine library for windows forms in .NET framework

    C#

  5. DVLD DVLD Public

    A full-stack desktop application system to manage driving and vehicle department. Made with Windows forms and SQL server

    C#

  6. MBL MBL Public

    a full-stack desktop application to manage and track user's own books. Made with Windows forms and SQL server

    C#