帮忙用C#做出这题编写一个程序,利用求余运算完成24小时和12小时制的转换[解决办法]public int intHour(int intH) { intResult=intH % 12; return intResult }