Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ureshelyekremove
- {
- class Program
- {
- static void Main(string[] args)
- {
- string sz2 = " Meg tart a tel es hideg van.";
- char[] sz1 = sz2.ToCharArray();
- int i, j;
- bool van;
- for (i = j = 0, van = true; i < sz1.Length; i++)
- {
- if (sz1[i] != ' ')
- {
- sz1[j++] = sz1[i];
- van = false;
- }
- else
- {
- if (!van)
- {
- sz1[j++] = sz1[i];
- van = true;
- }
- }
- }
- Console.WriteLine(sz2);
- string sz = new string(sz1, 0, j);
- Console.WriteLine(sz);
- Console.WriteLine("Kólity Kristóf");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement