• 2021-04-14
    【程序改错】
    题目:一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。

    --------------------------------------------------------
    答题方法:将/**********FOUND**********/下一行的语句改为正确语句,填入相应空格中。

    ------------------------------------------------------
    #include"stdio.h"
    void main()
    {
    /**********FOUND**********/
    long ge,shi,qian;wan,x;
    scanf("%ld",&x);
    /**********FOUND**********/
    wan=x%10000;
    qian=x%10000/1000;
    shi=x%100/10;
    ge=x%10;
    /**********FOUND**********/
    if(ge==wan||shi==qian)
    printf("this number is a huiwen
    ");
    else
    printf("this number is not a huiwen
    ");
    }
  • 举一反三