9.h
9.h
Explore posts from servers
CC#
Created by 9.h on 1/30/2024 in #help
for loop casuing error
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApp14

{

    internal class Program

    {

        static void Main(string[] args)

        {

            bool valid = false;

            while (!valid)

            {

                Console.WriteLine("Enter a string: ");              

                string sentence = Console.ReadLine();

                int length = sentence.Length;

                char[] sentence2 = sentence.ToCharArray();

                bool isupper = true;

                bool notrepeating = true;

                int valueascii = 0;

                for (int i = 0; i < length; i++)

                {

                    char b = sentence2[i];

                    if (Char.IsUpper(b) == false)

                    {

                        isupper = false;

                    }

                    valueascii = valueascii + Convert.ToInt32(b);

                }

                Array.Sort(sentence2);

                for (int i = 0; i < length; i++)

                {


                    if (sentence2[i] == sentence2[i++])

                    {

                        notrepeating = false;

                    }

                }

                Console.WriteLine(sentence2);

                if (length > 4 && length < 8 && isupper && valueascii > 419 && valueascii < 601 && notrepeating)

                {

                    Console.WriteLine("This is between 4 and 8 and is upper and has the correct ascii values and contains no repeating characters");

                    valid = true;

                }


                Console.ReadLine();

            }

        }

    }

}
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApp14

{

    internal class Program

    {

        static void Main(string[] args)

        {

            bool valid = false;

            while (!valid)

            {

                Console.WriteLine("Enter a string: ");              

                string sentence = Console.ReadLine();

                int length = sentence.Length;

                char[] sentence2 = sentence.ToCharArray();

                bool isupper = true;

                bool notrepeating = true;

                int valueascii = 0;

                for (int i = 0; i < length; i++)

                {

                    char b = sentence2[i];

                    if (Char.IsUpper(b) == false)

                    {

                        isupper = false;

                    }

                    valueascii = valueascii + Convert.ToInt32(b);

                }

                Array.Sort(sentence2);

                for (int i = 0; i < length; i++)

                {


                    if (sentence2[i] == sentence2[i++])

                    {

                        notrepeating = false;

                    }

                }

                Console.WriteLine(sentence2);

                if (length > 4 && length < 8 && isupper && valueascii > 419 && valueascii < 601 && notrepeating)

                {

                    Console.WriteLine("This is between 4 and 8 and is upper and has the correct ascii values and contains no repeating characters");

                    valid = true;

                }


                Console.ReadLine();

            }

        }

    }

}
24 replies
Mmfad
Created by 9.h on 10/27/2023 in #questions-and-advice
UK | Looking for good quality but affordable tshirt's. Looking to spend about £40, for atleast two.
Hello, as title says. Currently I am looking at buying either the Essentiall Tee's for £14.40 each or Premium Heavyweight for £28.00 from Abercombie & Fitch. Thoughts?
15 replies
CC#
Created by 9.h on 4/23/2023 in #help
❔ Indexing with [] to an expression type IEnumerable / array
128 replies