c++请问如何取变量的值?

毕业设计客栈 论文问答 1

假设i为变量,这样system("shutdown /t %i");取变量的值正确吗

回复

共2条回复 我来回复
  • 源码导航
    这个人很懒,什么都没有留下~
    评论

    可以这样,先把字符串输出到流中,然后从流中取数据

    #include
    
    ...
    ostringstream command;
    command<<"shutdown -s -t "<<time;
    system(command.str().c_str());
    
    0条评论
  • 毕设向导
    这个人很懒,什么都没有留下~
    评论

    (如果你的shutdown程序支持i变量)你为什么不这样?

    scanf("%d", &i); system("shutdown /t /i");

    0条评论

发表回复

登录后才能评论