时间差
#include <stdio.h>
int main() {
int hour1, minute1;
printf("请输入时间1:(小时 分钟)\n");
scanf("%d %d", &hour1, &min...
Read More