华师一附中OI组

标题: 输入一个三位数,颠倒之后输出。 [打印本页]

作者: admin    时间: 2018-7-4 17:17
标题: 输入一个三位数,颠倒之后输出。
比如输入123,输出321,输入760输出67

作者: admin    时间: 2018-7-4 20:55
  1. #include<iostream>
  2. using namespace std;
  3. int x,y,a,b,c;
  4. int main()
  5. {
  6.     cin>>x;
  7.     a=x/100%10;
  8.     b=x/10%10;
  9.     c=x/1%10;
  10.     y=100*c+10*b+a;

  11.     cout<<y;
  12.     return 0;
  13. }

复制代码

作者: JASONZHU    时间: 2018-7-6 22:02
题1.
  1. #include<iostream>
  2. using namespace std;
  3. int x,a,b,c,y;
  4. int main()
  5. {
  6.     cin>>x;
  7. a=x/100%10;
  8. b=x/10%10;
  9. c=x/1%10;
  10. y=c*100+b*10+a;
  11. cout<<y;

  12. }
复制代码

作者: 郑子川    时间: 2018-7-12 11:37
  1. #include <iostream>
  2. using namespace std;
  3. int a,b,c,d;
  4. int main()
  5. {
  6.    cin>>a;
  7.    b=a/100%10;
  8.    c=a/10%10;
  9.    d=a/1%10;
  10.    cout<<d<<c<<b;
  11. }
复制代码

作者: 高歌岭    时间: 2018-7-24 13:06
  1. #include<iostream>
  2. using namespace std;
  3. int x,a,b,c,y;
  4. int main()
  5. {
  6.     cin>>x;
  7. a=x/100%10;
  8. b=x/10%10;
  9. c=x/1%10;
  10. y=c*100+b*10+a;
  11. cout<<y;

  12. }
复制代码

作者: 周陈诚    时间: 2018-9-9 18:23
  1. #include<iostream>
  2. using namespace std;
  3. int x,a,b,c,y
  4. int main()
  5. {
  6. cin>>x
  7. a=x/100%10
  8. b=(x/10)%10
  9. c=x%10
  10. y=100*c+10*b+a
  11. cout<<y
  12. }
复制代码

作者: 叶涵羽    时间: 2021-8-11 19:42
#include <iostream>
using namespace std;
int x,y;//  x输入  y输出
int a,b,c;  //a百 b十 c个
int main()
{
    cin>>x;
       
        a=x/100;
        b=x/10%10;
        c=x%10;
        y=100*c+10*b+a;
       
        cout<<y;
        return 0;
}




欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2