Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I need to write a simple program to Output a welcome banner; Input two integer n

ID: 3614042 • Letter: I

Question

I need to write a simple program to
  1. Output a welcome banner;
  2. Input two integer numbers, compute the sum, subtraction,multiplication, division, and modulus of the two numbers, andoutput the results;
  3. Input two real numbers, compute the sum, subtraction,multiplication,and division of the two numbers, and output theresults;
  4. Input a text string, output its length; input an index withinthe string, and output the character at that position in thestring; input another text string, and output the location of thefirst occurrence of the second string in the first one (if suchlocation exists, otherwise output -1);
  5. Finally, input a date (a text string) in the formatmm/dd/yyyy (i.e., two digits for the month, followed by a'/', followed by two digits for the day, followed by a '/',followed by four digits for the year), and output it in the commonEuropean format dd-mm-yyyy (i.e., two digits for the day,followed by a '-', followed by two digits for the month, followedby a '-', followed by four digits for the year.
I am having tons of trouble with this because I missed a labshowing us how to make it, anyone helps is a lifesaver. Thanks inadvance!

Explanation / Answer

x.