求一个两位数的个位和十位的和
#include
using namespace std;
int main()
{
int n,b,c,d;
cout<<"请输入一个两位数,我可以求十位与个位之和";
cin>>n;
b=n/10;
c=n%10;
d=b+c;
cout<
求一个两位数倒序的结果
#include
using namespace std;
int main()
{
int n,ns,nb,jg;
cin>>n;
ns=n/10;
nb=n%10;
jg=nb*10+ns;
cout<
求任意三位数各个数位上数字的和
#include
using namespace std;
int main()
{
int X,S,Xbai,Xshi,Xge;
cin>>X;
Xshi=X%100/10;
Xge=X%100%10;
Xbai=X/100;
S=Xbai+Xshi+Xge;
cout<
输入一个三位数,把个位和百位对调后输出输入一个三位数,把个位和百位对调后输出
#include
using namespace std;
int main()
{
int ten,hungrd,one,number,last;
cin>>number;
ten=number%100/10;
one=number%100%10;
hungrd=number/100;
last=one*100+ten*10+hungrd;
cout<
两位数运算
#include
#include
using namespace std;
int main()
{
float s;
int n;
cin>>n;
s=n/10;
int g;
g=n%10;
double j;
j=s/g;
cout<
算算和是多少
#include
#include
using namespace std;
int main()
{
int y,g,s,b,x,h;
cin>>y;
g=y%100%10;
s=y%100/10;
b=y/100;
x=g*100+s*10+b;
h=x+y;
cout<
倒序输出一个四位整数
#include
#include
using namespace std;
int main()
{
int y,q,b,s,g,x;
cin>>y;
q=y/1000;
b=y%1000/100;
s=y%1000%100/10;
g=y%1000%100%10;
x=g*1000+s*100+b*10+q;
cout<
求一个5位数的各个位之和
#include
#include
using namespace std;
int main()
{
int y,w,q,b,s,g,x;
cin>>y;
q=y%10000/1000;
b=y%10000%1000/100;
s=y%10000%1000%100/10;
g=y%10000%1000%100%10;
w=y/10000;
x=w+q+b+s+g;
cout<
三位数运算
#include
#include
using namespace std;
int main()
{
int y,b,s;
cin>>y;
float x,g;
b=y/100;
s=y%100/10;
g=y%100%10;
x=(b+s)/(s+g);
cout<
买水果
#include
#include
using namespace std;
int main()
{
float x,y,z;
float xz,xy,zz;
float zong;
cin>>x;
cin>>y;
cin>>z;
xz=x*8.5;
xy=5.6*y;
zz=6.2*z;
zong=xz+xy+zz;
cout<
四位数的计算
#include
#include
using namespace std;
int main()
{
int sw,w,q,b,s,g,n;
cin>>n;
sw=n/100000;
w=n%100000/10000;
q=n%100000%10000/1000;
b=n%100000%10000%1000/100;
s=n%100000%10000%1000%100/10;
g=n%100000%10000%1000%100%10;
cout<
求六位整数的各个位
#include
#include
using namespace std;
int main()
{
int sw,w,q,b,s,g,n;
cin>>n;
sw=n/100000;
w=n%100000/10000;
q=n%100000%10000/1000;
b=n%100000%10000%1000/100;
s=n%100000%10000%1000%100/10;
g=n%100000%10000%1000%100%10;
cout<
加密四位数
#include
#include
using namespace std;
int main()
{
int y,yq,yb,ys,yg,x,xh,xs,xq,xb,ss,xg;
cin>>y;
yq=(y/1000+5)%10;
yb=(y%1000/100+5)%10;
ys=(y%1000%100/10+5)%10;
yg=(y%1000%100%10+5)%10;
x=yg*1000+ys*100+yb*10+yq;
cout<