Loading...
konstantin_zarev93 avatar konstantin_zarev93 0 Точки

Задачата за магазина в Visual Studiо работи програмата ми,но judge 0точки.

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

namespace Small_Shop
{
    class Program
    {
        static void Main(string[] args)
        {
            var product = Console.ReadLine().ToLower();
            var town = Console.ReadLine().ToLower();
            var quantity = double.Parse(Console.ReadLine());
            if (town == "sofia")
            {
                if (product == "coffee")
                    Console.WriteLine(0.50 * quantity);
                if (product == "water")
                    Console.WriteLine(0.80 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.20 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.45 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.60 * quantity);
            }
            if (town == "varna");
            {
                if (product == "coffee")
                    Console.WriteLine(0.45 * quantity);
                if (product == "water")
                    Console.WriteLine(0.70 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.10 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.35 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.55 * quantity);
            }
            if (town == "plovdiv");
            {
                if (product == "coffee")
                    Console.WriteLine(0.40 * quantity);
                if (product == "water")
                    Console.WriteLine(0.70 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.15 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.30 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.55 * quantity);
            }

        }
    }
}
 

Тагове:
0
Programming Basics
bMedarski avatar bMedarski 148 Точки
Best Answer

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Small_Shop
{
    class Program
    {
        static void Main(string[] args)
        {
            var product = Console.ReadLine().ToLower();
            var town = Console.ReadLine().ToLower();
            var quantity = double.Parse(Console.ReadLine());
            if (town == "sofia")
            {
                if (product == "coffee")
                    Console.WriteLine(0.50 * quantity);
                if (product == "water")
                    Console.WriteLine(0.80 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.20 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.45 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.60 * quantity);
            }
            else if(town == "varna")
            {
                if (product == "coffee")
                    Console.WriteLine(0.45 * quantity);
                if (product == "water")
                    Console.WriteLine(0.70 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.10 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.35 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.55 * quantity);
            }
            else if(town == "plovdiv")
            {
                if (product == "coffee")
                    Console.WriteLine(0.40 * quantity);
                if (product == "water")
                    Console.WriteLine(0.70 * quantity);
                if (product == "beer")
                    Console.WriteLine(1.15 * quantity);
                if (product == "sweets")
                    Console.WriteLine(1.30 * quantity);
                if (product == "peanuts")
                    Console.WriteLine(1.50 * quantity);
            }
        }
    }
}

0
07/11/2016 23:45:47
konstantin_zarev93 avatar konstantin_zarev93 0 Точки

Благодаря за помощта.

0
koksibg avatar koksibg 892 Точки

Объркал си последната цена:

 if (town == "plovdiv");

 if (product == "peanuts")
                    Console.WriteLine(1.55 * quantity), тук трябва да е 

 if (product == "peanuts")
                    Console.WriteLine(1.50 * quantity);

Поне доколкото видях как съм я решавал

0
StoyanVitanov avatar StoyanVitanov 11 Точки

 if (town == "varna")  и if (town == "plovdiv") , трябва да са без   в края . :) 

1
Alex0101 avatar Alex0101 374 Точки

Ако след if сложиш точко и запетай /;/, реално правиш иф с празно тяло.

Опитвай се и да слагаш къдравите скоби винаги, по-добре изглежда кода.

0
g_todorov avatar g_todorov 106 Точки

Ето и моето решение. 

Успех!

 

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

namespace SmallShop2
{
    class Program
    {
        static void Main(string[] args)
        {
            var product = Console.ReadLine().ToLower();
            var town = Console.ReadLine().ToLower();
            var quantity = Double.Parse(Console.ReadLine());

            if (product == "coffee")
            {
                if (town == "sofia")
                {
                    Console.WriteLine(quantity * 0.50);
                }
                else if (town == "plovdiv")
                {
                    Console.WriteLine(quantity * 0.40);
                }
                else
                {
                    Console.WriteLine(quantity * 0.45);
                }
            }
            if (product == "water")
            {
                if (town == "sofia")
                {
                    Console.WriteLine(quantity * 0.80);
                }
                else if (town == "plovdiv")
                {
                    Console.WriteLine(quantity * 0.70);
                }
                else
                {
                    Console.WriteLine(quantity * 0.70);
                }
            }
            if (product == "beer")
            {
                if (town == "sofia")
                {
                    Console.WriteLine(quantity * 1.20);
                }
                else if (town == "plovdiv")
                {
                    Console.WriteLine(quantity * 1.15);
                }
                else
                {
                    Console.WriteLine(quantity * 1.10);
                }
            }
            if (product == "sweets")
            {
                if (town == "sofia")
                {
                    Console.WriteLine(quantity * 1.45);
                }
                else if (town == "plovdiv")
                {
                    Console.WriteLine(quantity * 1.30);
                }
                else
                {
                    Console.WriteLine(quantity * 1.35);
                }
            }
            if (product == "peanuts")
            {
                if (town == "sofia")
                {
                    Console.WriteLine(quantity * 1.60);
                }
                else if (town == "plovdiv")
                {
                    Console.WriteLine(quantity * 1.50);
                }
                else
                {
                    Console.WriteLine(quantity * 1.55);
                }
            }
        }
    }
}
 

0
Можем ли да използваме бисквитки?
Ние използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Можете да се съгласите с всички или част от тях.
Назад
Функционални
Използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Използваме „сесийни“ бисквитки, за да Ви идентифицираме временно. Те се пазят само по време на активната употреба на услугите ни. След излизане от приложението, затваряне на браузъра или мобилното устройство, данните се трият. Използваме бисквитки, за да предоставим опцията „Запомни Ме“, която Ви позволява да използвате нашите услуги без да предоставяте потребителско име и парола. Допълнително е възможно да използваме бисквитки за да съхраняваме различни малки настройки, като избор на езика, позиции на менюта и персонализирано съдържание. Използваме бисквитки и за измерване на маркетинговите ни усилия.
Рекламни
Използваме бисквитки, за да измерваме маркетинг ефективността ни, броене на посещения, както и за проследяването дали дадено електронно писмо е било отворено.