✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
string s = System.Console.ReadLine ();
bool f1, f2, f3;
f1 = s [0]> '3' && s [0] < '8';
f2 = s [s.Length-1] == '3' || s [s.Length-1] == '4';
f3 =! (f1 || f2);
System.Console.Write( "{0} {1} {2}", f1, f2, f3);
(**CharpBase**)