The code that carried out the functions indicated above is stated below. It is not be noted that the code is written in C#
C# is a type-safe, object-oriented programming language. It is pronounced "see sharp"
Using System;
public class HoursAndMinutes
{
public static void Main()
{
// declaring minutes variable and assigning 197 as given in question
int minutes = 197;
// outputing the total minutes , hours
Console.WriteLine("{0} minutes is {1} hours and {2} minutes.", minutes, minutes/60, minutes%60);
}
}
// OUT
Learn more about C#:
https://brainly.com/question/20211782
#SPJ1