Рубрики

purple

Green added to purple equals


Eligibility

The Armed Forces Recreation Centers (AFRC) Resorts serve members of the U.S. Armed Forces, their families and other authorized users. The AFRCs are Category C Morale, Welfare and Recreation (MWR) activities operated by the U.S. Army as executive agent for Department of Defense (DOD). Army Installation Management Command (IMCOM) G9 directly manages the AFRCs to provide all uniformed services with high-quality, affordable resort-style facilities consistent with the Army’s focus on readiness and quality of life for Service Members and their Families. Personnel eligible to use AFRC guestrooms, food and beverage, recreation, facilities and other guest services are defined below.

In January 2020 we received new Department of Defense/Army Regulations which expand authorized use at AFRC Resorts to Purple Heart recipients, former prisoners of war (POW), veterans with VA-documented service-connected disability ratings and Primary Family Caregivers of eligible Veterans under the VA Program of Comprehensive Assistance for Family Caregivers.

This expanded authorization currently does not include the Edelweiss Lodge and Resort or Dragon Hill Lodge. The new law is subject to the limitations of applicable host nation law and international agreements that have not been resolved. If there is a change in policy we will update our website and social media pages.

Below are the guidelines for the new authorized users at Hale Koa Hotel and the Shades of Green Resort:

Veterans who are Purple Heart recipients, veterans who are former POWs, all veterans with VA-documented service-connected disability ratings, and individuals assessed, approved, and designated as the Primary Family Caregivers of eligible veterans under the VA Program of Comprehensive Assistance for Family Caregivers are eligible users when identified as follows:

Veterans must present a Veteran Health Identification Card (VHIC) indicating at least one of the three acceptable eligibility statuses (PURPLE HEART, FORMER POW, or SERVICE CONNECTED); paired with an acceptable credentials such as a REAL ID-compliant State driver’s license or a U.S. passport.

Eligibility_0.jpg

Note: VHICs are issued to veterans enrolled in VA health care. For information regarding eligibility please visit https://www.va.gov/healthbenefits/vhic/ for the application process.

Primary Family Caregivers must present their letter from the VA Office of Community Care that indicates they are assessed, approved, and designated Primary Family Caregiver of an eligible Veteran under the Program of Comprehensive Assistance for Family Caregivers and are eligible for these privileges paired with an acceptable credential like a REAL ID-compliant state driver’s license or a U.S. passport.

Restrictions apply for Disney’s Military Promotional Salute Tickets, Universal Orlando’s Military Promotional Ticket offers and the Stars and Stripes Length of Stay tickets.





Python always getting same result

This is the code I have written – based upon a Java program I have wrote previously and evidently was way off for Python.:

print('You will be mixing two primary colors to get a resulting color.') print('Primary colors are blue, red and yellow n') red = False blue = False yellow = False color1 = bool(input('Enter your first primary color: n')) color2 = bool(input('Enter your second primary color: n')) if color1 == red and color2 == blue: print('That makes purple!') elif color1 == blue and color2 == red: print('That makes purple!') elif color1 == yellow and color2 == red: print('That makes orange!') elif color1 == red and color2 == yellow: print('That makes orange!') elif color1 == blue and color2 == yellow: print('That makes green!') elif color1 == yellow and color2 == blue: print('That makes green!') else: print('You did not enter a primary color!') 

No matter what color combination I enter, I get the result “That makes purple!” Where did I go wrong with the logic of this program? Further, when I do not enter green as the primary color, I get this:

Traceback (most recent call last): File "color.py", line 19, in color1 = bool(input('Enter your first primary color: n')) File "", line 1, in NameError: name 'green' is not defined 

instead of the error message “You did not enter a primary color!” Where am I going wrong? EDIT: This is my new code and it works other than the erroring out.

print('You will be mixing two primary colors to get a resulting color.') print('Primary colors are blue, red and yellow n') red = 1 blue = 2 yellow = 3 color1 = input('Enter your first primary color: n') color2 = input('Enter your second primary color: n') if color1 == 1 and color2 == 2: print('That makes purple!') elif color1 == 2 and color2 == 1: print('That makes purple!') elif color1 == 3 and color2 == 1: print('That makes orange!') elif color1 == 1 and color2 == 3: print('That makes orange!') elif color1 == 2 and color2 == 3: print('That makes green!') elif color1 == 3 and color2 == 2: print('That makes green!') else: print('You did not enter a primary color!') 

Colin Wynn
the authorColin Wynn

Leave a Reply