鱼C论坛

 找回密码
 立即注册
查看: 3001|回复: 3

C++问题 求助大神

[复制链接]
发表于 2013-10-25 20:15:26 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这是我写的程序和运行的结果  ,  但是结果不如预期   求大神帮忙
#include <iostream>
#include  <ctime>
using namespace std;
void second (int elapseTime)
{
    int totalSeconds = time(0);
       int currentSecond = totalSeconds % 60;
       int totalMinutes = totalSeconds/60;
       int currentMinute = totalMinutes % 60;
       int totalHours = totalMinutes / 60;
       int currentHour = totalHours % 24;
}
void setTime (int elapseTime)
{
    int totalSeconds = time(0);
       int currentSecond = totalSeconds % 60;
       int totalMinutes = totalSeconds/60;
       int currentMinute = totalMinutes % 60;
       int totalHours = totalMinutes / 60;
       int currentHour = totalHours % 24;
       cout<<currentHour<<":"<<currentMinute<<":"<<currentSecond<<endl;
}
void Print()
{
    cout<<"...................................................................."<<endl ;
}

int main()
{    string name;
     int hour,minute,second;
       cout <<"              Time Program using Time Class :";
       getline(cin,name);
       Print();
       cout<<"The current GMT - Greenwich mean time is ...."<<endl;
       Print();
       cout<<"HR:MN:SE"<<endl ;
       setTime (0);
       Print();
       cout<<"The current Beijing calculated time is ...."<<endl ;
       Print();
       cout<<"HR:MN:SE"<<endl ;
       time_t hold_time;
   hold_time=time(NULL);
   cout<<ctime(&hold_time);
       Print();
       cout<<"If the elapsed time was 555550 seconds then the GMT would be ....."<<endl ;
       Print();
       cout<<"HR:MN:SE"<<endl ;
       setTime (555550);

    return 0;
}

运行结果
1234.png


预期结果

预期结果

预期结果


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-10-25 20:16:09 | 显示全部楼层
求助 求助
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-10-26 19:05:03 | 显示全部楼层
我顶  我顶 我顶顶顶
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-10-28 19:58:11 | 显示全部楼层
你看这是不是你想要的结果:

1.jpg 2.jpg

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 09:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表