用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;
}
展开全部
//#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;
}
运行样例:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询