当前位置: 代码迷 >> VC >> 输入任意字符 暂停 一个简单的c++ 小程序解决方法
  详细解决方案

输入任意字符 暂停 一个简单的c++ 小程序解决方法

热度:7557   发布时间:2013-02-25 00:00:00.0
输入任意字符 暂停 一个简单的c++ 小程序
#include <iostream.h>
#include "stdio.h"

#define N 5

void main()
{
int A[N],i;
for(i=0;i<N; i++)
{
cin>>A[i];
}  
  cout<<endl;
for(i=0;i<N; i++)
{
cout<<A[i];
}
//cout <<"\npress any key to close";
//system("pause");
  //getch ();
cout<<endl;
}
我想输入5个数据后 回车 暂停 输出press any key to close 再按任意键结束  
  这么写 我 
  还有就是暂停后 按任意键继续 我百度了下 说 system("pause"); 或者getch ();
  但不知道怎么用  
  本人刚刚学VC 大家多多指教


------解决方案--------------------------------------------------------
C/C++ code
#include <iostream>using namespace std;#define N 5 int main(){    int A[N],i;     for(i=0;i <N; i++)     {         cin>>A[i];     }           cout <<endl;     for(i=0;i <N; i++)     {         cout <<A[i];     }     cout <<endl;     system("pause");     return 0;}
  相关解决方案