zoukankan      html  css  js  c++  java
  • 1107: 零起点学算法14——三位数反转

    1107: 零起点学算法14——三位数反转

    Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
    Submitted: 4915  Accepted: 2378
    [Submit][Status][Web Board]

    Description

    水题

    Input

    输入1个3位数(题目包含多组测试数据)

    Output

    分离该3位数的百位、十位和个位,反转后输出(每组测试数据一行)

    Sample Input

     
    250

    Sample Output

    052

    HINT

    分离出各位数字可以用取余和除数

    注意在C语言里,2个整数相乘除结果还是整数 比如8/3在C语言里结果是2

    取余采用符号%

    比如8%3的结果应该是2即8除以3后的余数


    Source

     
     1 #include<stdio.h>
     2 int main(){
     3     int x,a,b,c;
     4     while(scanf("%d",&x)!=EOF){
     5         a=x/100;
     6         b=x%100/10;
     7         c=x%10;
     8         printf("%d%d%d
    ",c,b,a);
     9     }
    10     return 0;
    11 }

    //想一下,如果不是三位数,是多位数呢?如果前面0要舍去怎么做?

  • 相关阅读:
    win_tc使用感受
    10进制转8进制(栈操作)
    动态栈
    数组
    单链表学习
    static用法
    基础2
    linux c first
    linux net command /uboot command
    opencv
  • 原文地址:https://www.cnblogs.com/dddddd/p/6676077.html
Copyright © 2011-2022 走看看