Skip to content
View MC808Grooveshark's full-sized avatar
💥
Healy arc tongue stund
💥
Healy arc tongue stund

Block or report MC808Grooveshark

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MC808Grooveshark/README.m
- 👋  I’m @MC808Grooveshark
- 👀 I’m interested in ...
- 🌱 I’m currently learning ...
- 💞️ I’m looking to collaborate on ...
- 📫 How to reach me ...

<!---
MC808Grooveshark/MC808Grooveshark is a ✨ special ✨ repository because its `README.md` (this file) appears on your GitHub profile.
You can click the Preview link to take a look at your changes.
--->

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CreativeCub
{
    class Program
    {
        string value, substring;
        int j, i;
        string[] a;
        void input()
        {
            Console.Write("Enter the String : ");
            value = Console.ReadLine();
            a = new string[value.Length];
            Console.WriteLine("All Possible substrings of the given string are :");
            for (i = 1; i <= value.Length; i++)
            {
                for (j = 0; j <= value.Length - i; j++)
                {
                    substring = value.Substring(j, i);
                    a[j] = substring;
                    Console.WriteLine(a[j]);
                }
            }
        }
        public static void Main()
        {
            Program pg = new Program();
            pg.input();
            Console.ReadLine();
        }
    }
}

Popular repositories Loading

  1. MC808Grooveshark MC808Grooveshark Public

    Config files for my GitHub profile.

    1

  2. Heat.exchanger Heat.exchanger Public

    Forked from gonzojive/solar

    Open source Maximum Power Point Tracking (MPPT) and inverter hardware/software for photovoltaic projects.

    C