问题标题: 酷町堂:1807 时,分,秒

0
0

0
已采纳
叶宝锴
叶宝锴
新手光能
新手光能

叶宝锴的提交(cpp):

 
  • #include<iostream>
  • #include<cstdio>
  • using namespace std;
  • int main() {
  • int s,m,h;
  • cin>>s;
  • h=s/3600;
  • m=(s%3600)/60;
  • cout<<h<<"\""<<m<<"\"";
  • return 0;
  • }
1
0
0
0
李沫朴
李沫朴
新手天翼
新手天翼
  • #include <bits/stdc++.h> using namespace std; int main() { int a; cin>>a; cout<<a/3600<<'"'<<a/60%60<<'"'; }
0
朱小川
朱小川
缔造者
缔造者

a=b/60%60;

c=b/3600;

cout<<c<<"\""<<a<<"\"";

0
我要回答