回文數判定

2021-08-10 23:35:07 字數 557 閱讀 8785

給定乙個字串,判定是否是回文數,如abcba是回文數,abc不是

例項輸入

abcba

例項輸出

abcba是乙個回文數

**:

/*本實驗完成驗證乙個字串是否為回文字串

*/#include #include #include#include#define max 10

int top = 100;

void init_stack(char s)

int notempty(char s)

else return 1;

}void push(char s,char c)

char pop(char s)

}int main()

{ char s[max];

gets(s);

int lenth = strlen(s);

//printf("%d",lenth);

char a[top];

init_stack(a);

int i;

for(i = 0; i

回文數 素數的判定

題目如下 輸出既是回文數又是素數的5位十進位制數,並計算個數 分析 回文數,即偶數字時,左右對稱 奇數字時,除了中間那位,左右對稱。由此判斷即可。函式 如下 int is huiwen int n for j 0 j i 2 j i return 1 判斷素數的函式 如下 int is primer...

判定回文串

time limit 1000ms memory limit 65536k 輸入一串字元 長度小於100 判斷該串字元是否是回文串 正序讀與逆序讀內容相同 輸入一串字元 長度小於100 若該串字元是回文串輸出 yes 否則輸出 no asdfgfdsa yes 使用遞迴的必需條件 可以通過遞迴呼叫來...

回文串判定

time limit 1000ms memory limit 65536k 輸入一串字元 長度小於100 判斷該串字元是否是回文串 正序讀與逆序讀內容相同 輸入一串字元 長度小於100 若該串字元是回文串輸出 yes 否則輸出 no asdfgfdsa yes include include inc...