Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Do you have a middle name?

by igoryonya (Pilgrim)
on Dec 04, 2009 at 07:41 UTC ( [id://811037]=note: print w/replies, xml ) Need Help??


in reply to Re: Do you have a middle name?
in thread Do you have a middle name?

In Russia, a middle name is always a father's name with gender endings. For instance, my father's name is Aleksandr, so my Father, hence middle, name is Aleksandrovich, on the other hand, if I was a girl, my father name would be Aleksandrovna. In addition to ovich and ovna endings, there is a variation evich, evna, depending on which name is used. This is just a fun brainstorm, so I, to be quick, only did ovich, ovna. In context with english names:
@Michael = ('Michaelovich', 'Michaelovna);
or
my @genderEnding = ('ovich', 'ovna'); my @genderType = ('Male', 'Female'); my $genderSelected = 1; my $fathersName = &promptConsole("What's your father's name"); my $gender = &promptConsole("What's your gender"); for my $gen (qw{m male man boy}){ $genderSelected = 0 if(lc($gender) eq $gen); } print "Since, you are $genderType[$genderSelected], your father (middl +e) name is $fathersName$genderEnding[$genderSelected]\n"; sub promptConsole{ print shift, ": "; my $in = <>; $in =~ s/[\r\n\cM]+$//; return $in; }
:)
Pardon me, I've wrote this script after voting without testing as a fun brainstorm :) and I've made a couple of bugs. People messaged me, saying that it's not working, so I've fixed it. I've misspelled sub call to $fathersName and I used <INPUT> instead of <>. I got it mixed up with an other programming language. I don't even remember which one, but here we go, the fixed version.

Replies are listed 'Best First'.
Re^3: Do you have a middle name?
by bobthechef (Initiate) on May 14, 2015 at 16:50 UTC
    Strictly speaking, that isn't your middle name. It's your otchestvo or patronymic.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://811037]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-18 03:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found