Question

Assignment3A: Warmup: You need to know these things when you’re a king. Write a program that...

Assignment3A: Warmup: You need to know these things when you’re a king. Write a program that asks the user to enter either an “African” or a “European” swallow. The program’s behaviour should mimic the program below. If the user enters something øther than “African” or “European”, the program shøuld insult the user like the example below. If nøne of this makes sense, løøk here. Call the class Assignment3A (and file name should be “Assignment3A.java”, “Assignment3A.cs”, or “Assignment3A.cpp”). Tø cømpare strings, see the Appendix. Nøte: African starts with a capital ‘A’, and a møøse once bit my sister… no, realli!

Sample Output #1: What kind of swallow?

African

Yes, it could grip it by the husk.

Sample Output #2:

What kind of swallow?

European

A five-ounce bird could not carry a one-pound coconut.

Sample Output #3:

What kind of swallow?

Spanish

You really are not fit to be a king.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
using System;

class Assignment3A {

    public static void Main() {
        Console.WriteLine("What kind of swallow?");
        string swallow = Console.ReadLine();
        if (swallow.Equals("African", StringComparison.InvariantCultureIgnoreCase)) {
            Console.WriteLine("Yes, it could grip it by the husk.");
        } else if (swallow.Equals("European", StringComparison.InvariantCultureIgnoreCase)) {
            Console.WriteLine("A five-ounce bird could not carry a one-pound coconut.");
        } else {
            Console.WriteLine("You really are not fit to be a king.");
        }
    }
}
Add a comment
Know the answer?
Add Answer to:
Assignment3A: Warmup: You need to know these things when you’re a king. Write a program that...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT