Skip to content
View ParsaNojavan's full-sized avatar
🎯
Focusing...
🎯
Focusing...

Block or report ParsaNojavan

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
ParsaNojavan/README.md

Hey! I am Parsa
I'm an 19 y/o software developer.
Founder & Ceo Of Develop Era


My most using technologies

C# JavaScript Python C C++ CSS3 PostgreSQL NPM TypeScript SQLite .net Xamarin React Express.js JQuery Pandas Redis Tailwind Bootstrap NodeJs NextJs RabbitMQ Numpy Flask NestJs Arduino MSSQLServer MongoDb Docker Matplotlib Scikit-learn MySQL Git JWT GitHub Cloudflare Nginx


Socials


parsanojavan

parsanojavan

C++

#include <iostream>
using namespace std;




enum Gender{
	Male,Female
};

inline const char* ToString(Gender gender)
{
    switch (gender)
    {
        case Male:   return "Male";
        case Female:   return "Female";
        default:      return "[Unknown Gender]";
    }
}

class Person{
	string Name;
	enum Gender Gender;
	public :
		Person(string name,string lastname,
		int age,enum Gender gender){
			Name = name;
			Gender = gender;
		}
	public :
		void Introduce(){
			cout<<"Hello,my name is "<<Name<<" and I\'m a "<<ToString(Gender);
		}
		
};



int main() {
	enum Gender myGender = Male;
	Person Parsa("Parsa","Nojavan",19,myGender);
	Parsa.Introduce();
	return 0;
}

Popular repositories Loading

  1. ParsaNojavan ParsaNojavan Public

    Config files for my GitHub profile.

    1

  2. Restaurant_Ordering Restaurant_Ordering Public

    an app crated in windows forms that simulates the ordering apps used in restaurants

    C# 1

  3. WebBrowser WebBrowser Public

    a little project witch simulates a web browser using Windows Forms .Net Framework

    C# 1

  4. Contacts-Explorer Contacts-Explorer Public

    Simple Contacts app made in windows forms using ADO.Net

    C# 1

  5. BarCode-Generator BarCode-Generator Public

    a small project to create Qrcode and barcode of a text using zen barcode library

    C# 1

  6. Text-Editor Text-Editor Public

    A Text Editor made with WPF

    C# 1