欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第六节 练习3

程序员文章站 2022-04-04 11:11:15
...
#include<iostream>
#include<iomanip>
#include<cstdio>

using namespace std;

#define PI 3.14

int main()
{
   int a,b,c,d,e;
   cout << "输入:";
   cin >> a;
   
   b = a / 100; //利用整除
   c = a / 10 - b * 10;
   d = a % 10;
   e = d * 100 + c * 10 + d;
   
   cout << e;
   return 0; 
}

结果:
第六节 练习3