Hello, I’m working on this task:
- Write a program that outputs “I trusted you and you betrayed me” - but put it in lower camel case.
(For example, “I love you” is “iLoveYou”.)
Here is my code:
public static class TrustAndBetrayal
{
public static void Main()
{
//I trusted you and you betrayed me
string a = "I trusted";
string palabraAdecuada = " you ";
string c = "and";
string d = "betrayed";
string e = " me";
Console.WriteLine( a + palabraAdecuada + c + palabraAdecuada + d + e);
}
}
Can anyone please help me to solve it?