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

Hey there I am trying to do a program that converts a name in to pig latin For i

ID: 3549284 • Letter: H

Question

Hey there I am trying to do a program that converts a name in to pig latin

For instance Paul is alpay

Julie ulijay

Or if it is a vowel oscar would be oscarway

Any advice how to input characters

http://users.csc.calpoly.edu/~phatalsk/225/Assignments/Asgn3/asgn3.pdf

Explanation / Answer

#include #include using namespace std; void conversion(char name[]); void lowercase(char name[]); int main() { char first[100], last[100]; char answer; cout > first, last; lowercase(first); lowercase(last); conversion(first); conversion(last); cout > answer; while (answer == 'Y' || answer == 'y') {cout > first, last; lowercase(first); lowercase(last); conversion(first); conversion(last); cout