khaldon asfor
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication9
{
class Program
{
static void Main(string[] args)
{
int x, y, z;
Console.WriteLine("plz enter num bolls");
x = int.Parse(Console.ReadLine());
y = x / 20;
z = x % 20;
if (z > 0)
{
Console.WriteLine(" num bags is" + (y + 1));
}
else
{
Console.WriteLine(" num bags is" + y);
}
Console.ReadKey();
}
}
}
ليست هناك تعليقات:
إرسال تعليق