February 2019 0 41 Report
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
string pobierz;
int ilea = 0;
pobierz = Console.ReadLine();

for (int i = 0; i < pobierz.Length; i++)
{
if (pobierz[i] == 'a')
{
ilea++;
}
}
Console.WriteLine("wystąpiło liter a: " + ilea);
string nazwa;
int ilek = 0;
nazwa = Console.ReadLine();

for (int i = 0; i < nazwa.Length; ++i)
{
if (nazwa[i] == 'k')
{
ilek = ilek + 1;
}

Console.WriteLine("wystąpiło liter k: " + ilek);
Console.ReadKey();
}
}
}
}

Dlaczego w powyższym programie, w drugiej pętli, zamiast 3 "k" w "kuglarska krowa" znajduje tylko 1? Najlepiej obrazkowo :)

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.