#2353: IF小括號裡面的運算


qq100tea (qqtea)

學校 : 國立臺灣師範大學附屬高級中學
編號 : 5446
來源 : [140.131.149.248]
最後登入時間 :
2010-04-01 16:08:24
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [60.198.129.145] | 發表日期 : 2009-09-06 12:22

希望在英文字母後如果遇到空白鍵就當是1個數字

IF裡面的判斷式該怎麼寫

 
#2354: Re:IF小括號裡面的運算


qq100tea (qqtea)

學校 : 國立臺灣師範大學附屬高級中學
編號 : 5446
來源 : [140.131.149.248]
最後登入時間 :
2010-04-01 16:08:24
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [60.198.129.145] | 發表日期 : 2009-09-06 20:07

希望在英文字母後如果遇到空白鍵就當是1個數字

IF裡面的判斷式該怎麼寫



#include<stdio.h>
#include<math.h>
int main()
{
    int l;
    int i;
    int real;
    int max;
    char ch[99];
    while(gets(ch)!=EOF)
    {
    real = 0;                  
    l = strlen(ch);
    max = l-1;   
    if(l%2==0)
              for(i=0;i<=l/2;i++)
              {
                      if(ch[i]==ch[max-i])                                     
              }
    else
    }
   
   
    system("pause");
    return 0;
}

SORRY 程式碼已補上

 
#2361: Re:IF小括號裡面的運算


example (學姊)

學校 : 臺北市立麗山高級中學
編號 : 6634
來源 : [60.250.138.144]
最後登入時間 :
2022-08-09 17:07:42
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [118.166.113.161] | 發表日期 : 2009-09-09 19:06

希望在英文字母後如果遇到空白鍵就當是1個數字

IF裡面的判斷式該怎麼寫


是這個意思嗎

if(  ch == '0' ) {

    ...

}

 
ZeroJudge Forum