码迷,mamicode.com
首页 > 编程语言 > 详细

C++编程实现对工厂产品生产流程的模拟

时间:2019-01-21 19:23:15      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:ace   include   c++编程   return   int   mes   rod   space   nbsp   

 1 #include <iostream>
 2 #include <list>
 3 using namespace std;
 4 
 5 int main ()
 6 {
 7      list<product> queue;
 8      queue.push_back(product());
 9      var x = queue.front();
10      cout<<"产品"<<x<<"生产完毕,共耗时9小时"11      return 0;
12 }

最近编写了模拟工厂产品生产流程的程序,分享如上(C++)

 

C++编程实现对工厂产品生产流程的模拟

标签:ace   include   c++编程   return   int   mes   rod   space   nbsp   

原文地址:https://www.cnblogs.com/WSKIT/p/10300034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!