Несчастный Петрик ест макаронину длиной n км. В первый день он съел половину всей длины, во второй - треть от того, что осталось, а в третий - четвертую часть от того, что осталось и т.д. Сколько макаронины ему останется на m-й день? Решите в Паскаль
using namespace std;
int m=-1, n=-1, k=-1;
int p=-1, q=-1, r=-1;
int main() {
setlocale(LC_ALL, "Rus");
cout<<"Введите часы(m):"<<endl;
while (m>24 or m<0) {
cin>>m;
if (m>24 or m<0) {
cout<<"Максимум - 24, минимум - 0"<<endl;
}
}
cout<<"Введите минуты(n):"<<endl;
while (n>59 or n<0) {
cin>>n;
if (n>59 or n<0) {
cout<<"Максимум - 59, минимум - 0"<<endl;
}
}
cout<<"Введите секунды(k):"<<endl;
while (k>59 or k<0) {
cin>>k; if (k>59 or k<0) {
cout<<"Максимум - 59, минимум - 0"<<endl;
}
}
cout<<""<<endl;
cout<<"Введите количество пройденых часов(p)"<<endl;
while (p<0) {
cin>>p;
if (p<0) {
cout<<"Минимум - 0"<<endl;
}
}
cout<<"Введите количество пройденых минут(q)"<<endl;
while (q<0) {
cin>>q;
if (q<0) {
cout<<"Минимум - 0"<<endl;
}
}
cout<<"Введите количество пройденых секунд(r)"<<endl;
while (r<0) {
cin>>r;
if (r<0) {
cout<<"Минимум - 0"<<endl;
}
}
cout<<"Начальное время: "<<m<<" часов, "<<n<<" минут, "<<k<<" секунд"<<endl; k=(r+k)%60;
n+=(r+k)/60;
n=(n+q)%60;
m+=(n+q)/60;
m=(m+p)%24;
cout<<"Конечное время: "<<m<<" часов, "<<n<<" минут, "<<k<<" секунд"<<endl;
}
1)
using System;
class Program {
static void Main() {
int num = 16;
bool isPow2 = true;
while (num > 1){
if (num % 2 == 0){
num /= 2;
} else {
isPow2 = false;
break;
}
}
if (isPow2)
Console.WriteLine("Является");
else
Console.WriteLine("Не является");
}
}
2)
using System;
class Program {
static Random rnd = new Random();
static void Main() {
int min = 1;
int max = 100;
int numOfAttempts = 8;
int x = rnd.Next(min, max);
bool isWin = false;
Console.WriteLine("Игра \"Больше-Меньше\"");
Console.Write("Задайте число попыток: ");
numOfAttempts = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Отгадайте число от {0} до {1}", min, max);
Console.WriteLine("Попытки: {0}\n", numOfAttempts);
int input;
do {
Console.Write("Введите число: ");
input = Convert.ToInt32(Console.ReadLine());
numOfAttempts--;
if (input > x)
Console.WriteLine("x < {0} [попытки: {1}]", input, numOfAttempts);
if (input < x)
Console.WriteLine("x > {0} [попытки: {1}]", input, numOfAttempts);
if (input == x){
isWin = true;
break;
}
} while (numOfAttempts > 0);
if (isWin){
Console.WriteLine("\nПобеда!");
} else {
Console.WriteLine("\nПроигрыш! Загаданное число: {0}", x);
}
}
}