fork(3) download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var texto = "stack exchange";
  6. var upper = texto.Length > 1 ? char.ToUpper(texto[0]) + texto.Substring(1) : texto.ToUpper();
  7. WriteLine(upper);
  8. }
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/82141/101
Success #stdin #stdout 0.02s 15924KB
stdin
Standard input is empty
stdout
Stack exchange