标题:无限循环
只看楼主
欢乐人生0
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2013-4-18
结帖率:50%
已结贴  问题点数:10 回复次数:3 
无限循环
1. 在Windows操作系统中,创建控制台程序child,程序无限循环输出如下格式的文字:
“The child is talking at [system time]”
其中的system time是程序获取到的系统时间
提示:使用cout<<ctime(&t1)<<endl;可以输出当前的系统时间(C++);
真的是想不出怎么做。。。
搜索更多相关主题的帖子: system Windows 
2013-05-28 13:44
apull
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:三体星系
等 级:版主
威 望:185
帖 子:1404
专家分:8479
注 册:2010-3-16
得分:7 
程序代码:
#include <iostream>
#include <windows.h>
#include <ctime>

using namespace std;

int main() {
    char tt[30],*p;
    p=tt;
    time_t t;
    while(1)    
    {
        t=time(&t);
        p=ctime(&t);
        p[strlen(p)-1]='\0';
        system("cls");
        cout << "The child is talking at [" << p << "]" << endl;
        Sleep(1000);
    }
    
    return 0;
}
2013-05-28 14:38
欢乐人生0
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2013-4-18
得分:0 
谢谢
2013-05-28 23:01
欢乐人生0
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2013-4-18
得分:0 
2. 在Windows操作系统中,创建另外一个控制台程序parent,这个程序再创建一个进程去执行child程序, 同时parent进程无限循环输入如下格式的文字
“The parent is talking at [system time]”
其中的system time是程序获取到的系统时间
最后请解释输出结果。
能帮我再看看这道题吗?谢谢
2013-05-28 23:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-412419-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023188 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved