c_cpp 12小时时钟乘法 - GeeksforGeeks

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 12小时时钟乘法 - GeeksforGeeks相关的知识,希望对你有一定的参考价值。

/*
http://ideone.com/NzL6KP
http://www.practice.geeksforgeeks.org/problem-page.php?pid=981
*/


#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int t, x, y;
	cin >> t;
	while(t--){
		cin >> x >> y;
		int res = x * y;
		if(res >= 12){
			res = res % 12;
		}
		cout << res << endl;
	}
	return 0;
}

以上是关于c_cpp 12小时时钟乘法 - GeeksforGeeks的主要内容,如果未能解决你的问题,请参考以下文章

Quartus 12 小时时钟(同步)

js实现12小时时钟

Silicon C8051F340之时钟系统

[12小时Javascript Clock显示24时间,错误的AM / PM

使用OpenGL绘制时钟的小时标记

c_cpp nrf52时钟