PAT (Basic Level) Practice 1001
using System;
namespace _1001
{
class Program
{
static void Main(string[] args)
{
// bool b= int.TryParse(Console.ReadLine(),out int intInput);
int intInput = int.Parse(Console.ReadLine());
//if (b)
//{
int count = 0;
while (intInput>1)
{
if (intInput % 2 == 0)
{
intInput = intInput / 2;
}
else
{
intInput = (3 * intInput + 1) / 2;
}
count++;
}
Console.WriteLine(count);
// }
}
}
}
此题太简单,就不解释了。
PTA不支持 net6的一些功能,让愚甚是伤心。
赞 (0)