已解决 赵孟喆 资深守护 题目链接: 酷町堂:7423 #include<iostream> using namespace std; int main(){ int x; cin>>x; x--; int time; time=7+x*7; time=time%24; if(time>9){ cout<<time<<":00"; }else{ cout<<" "<<time<<":00"; } return 0; } 60分
崔乔昕 中级光能 int类型 x 主函数(){ 输入x x等于(7乘x)模24 if如果(x等于等于0){ 输出24:00 }else否则{ if如果(x除10等于等于0){ //表示一位数 输出0x:00 }else否则{ //表示两位数 x:00 } } return 0; } 以上是整体思路and伪代码