
26-03-2008, 20:03
|
|
|
|
חבר מתאריך: 26.03.08
הודעות: 3
|
|
|
הצלחתי לפתור את הבעיה, אך לא לגמרי
פתרתי את הבעיה בדרך הבאה:
a
קוד:
using System;
namespace _0._8
{
class Program
{
static void Main()
{
string str, zog;
int x = 0, y = 2, zogcount = 0;
const int stringlength = 18;
string[] zogot = new string[18];
Console.WriteLine("Enter string");
str = Console.ReadLine();
zog = str.Substring(18, 2);
for (int i = 0; i < stringlength; i++)
{
zogot[i] = str.Substring(x, y);
x++;
}
for (int i = 0; i < stringlength; i++)
{
if (zogot[i] == zog)
zogcount++;
i++;
}
Console.WriteLine(zogcount);
}
}
}
a
אבל מתי שאני מכניס קלט לדוגמה:
abcabacadcababddaaab
הפלט שלי הוא 3, למרות שהוא אמור להיות 4.
לא הצלית למצוא את הבעיה.
|