fork download
  1. using System;
  2. using System.Text;
  3. using System.Collections.Generic;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. string nama = "dimas fauzan";
  10. for (int i = nama.Length - 1; i >= 0; i--) {
  11. if (i == nama.Length - 1 || i == 0 || i % 6 == 0) {
  12. System.Console.Write("*");
  13. } else {
  14. System.Console.Write(nama[i]);
  15. }
  16. }
  17. }
  18. }
Success #stdin #stdout 0.03s 25956KB
stdin
Standard input is empty
stdout
*azua* sami*