用c++输入输出语句编程序。输入一个4位的正整数,输出其各位上的数字。

如题所述

[cpp] view plain copy

    /*  

    * 文件名称:Ex1-1 

    * 作    者:  陶浩然 

    * 完成日期:     2016 年     3月 10   日  

    * 版 本 号:v1.0  

    * 对任务及求解方法的描述部分: 

    * 输入描述:ab   

    * 问题描述:求ab的和与差  

    * 程序输出: ab的和与差  

    * 问题分析: 略 

    * 算法设计:a-b&a+b   

    */    

    #include <iostream>    

    using namespace std;    

    int main( )    

    {       

    int a,b,sum,min;    

    cin>>a>>b;//输入两个整数,两个数之间用空格分开     

    sum=a+b;     

    min=a-b;  

    cout<<"a+b="<<sum<<endl;    

    cout<<"a-b="<<min<<endl;  

    return 0;  

    }    

温馨提示:答案为网友推荐,仅供参考
第1个回答  2018-03-05
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
using namespace std;
int main(int argv,char *argc[]){
int n;
cout << "Please enter an integer(>999 & <10000)...\n";
if(!(cin >> n) || n<1000 || n>9999){
cout << "Input error, exit...\n";
return 0;
}
cout << n/1000 << ' ' << n/100%10 << ' ' << n/10%10 << ' ' << n%10 << endl;
return 0;
}

运行样例:

相似回答