Board logo

標題: 606 檢驗學號 [打印本頁]

作者: 方浩葦    時間: 2024-5-10 22:14     標題: 606 檢驗學號

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入三組學號,學號總共有6個字元,由左至右分別以s0~s5表示,s0~s4均是數字;s5是大寫英文字母的檢查碼。
s5的判斷規則:若公式「((s0+s2+s4)+(s1+s3)*5)%26」的計算結果為1,則s5為A;若計算結果為2,則s5為B,以此類推。請依序判斷使用者輸入的學號是否正確,正確則輸出「Pass」,否則輸出「Fail」。
提示:數字「0」的ASCII碼=48,英文字母「A」的ASCII碼=65。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
三組學號

輸出說明
三組學號是否合法

範例輸入
12345M
55237B
03805A

範例輸出
Pass
Pass
Fail


本帖隱藏的內容需要回復才可以瀏覽

作者: 楊惇翔    時間: 2024-5-11 20:43

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0;t<3;t++)
  6.     {
  7.         string str;
  8.         int n[5];
  9.         getline(cin,str);
  10.         for(int i=0;i<5;i++)
  11.             n[i]=str[i]-'0';
  12.         int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  13.         if(res==str[5]-'A'+1)
  14.             cout<<"Pass"<<endl;
  15.         else
  16.             cout<<"Fail"<<endl;
  17.     }
  18.     return 0;
  19. }
複製代碼

作者: 宥竣    時間: 2024-5-11 20:43

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0;t<3;t++)
  6.     {
  7.         string s;
  8.         int n[5];
  9.         getline(cin,s);
  10.         for(int i=0;i<5;i++)
  11.             n[i]=s[i]-'0';
  12.         int m=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  13.         if(m==s[5]-'A'+1) cout<<"Pass\n";
  14.         else cout<<"Fail\n";
  15.     }
  16.     return 0;
  17. }
複製代碼

作者: 張博翔    時間: 2024-5-11 20:43

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0; t<3; t++)
  6.     {
  7.         string str;
  8.         int n[5];
  9.         getline(cin,str);
  10.         for(int i=0; i<5; i++)
  11.             n[i]=str[i]-'0';
  12.         int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  13.         if(res==[5]-'A'+1)
  14.             cout<<"Pass"<<endl;
  15.         else
  16.             cout<<"Fail"<<endl;
  17.     }
  18.     return 0;
  19. }
複製代碼

作者: 林哲弘    時間: 2024-5-11 20:44

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0;t<3;t++)
  6.     {
  7.         string str;
  8.         int n[5];
  9.         getline(cin,str);
  10.         for(int i=0;i<5;i++)
  11.         n[i]=str[i]-'0';
  12.         int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  13.         if(res==str[5]-'A'+1)
  14.             cout<<"Pass"<<endl;
  15.         else
  16.             cout<<"Fail"<<endl;
  17.     }
  18.     return 0;
  19. }
複製代碼

作者: 盧禹丞    時間: 2024-5-11 20:48

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0;t<3;t++)
  6.     {
  7.         string str;
  8.         int n[5];
  9.         getline(cin, str);
  10.         for(int i=0;i<5;i++)
  11.             n[i]=str[i]-'0';
  12.         int res=(n[0]+n[2]+n[4]+n[i]+n[3])*5)%26;
  13.         if(res==str[5]-'A'+1)
  14.              cout<<"Pass"<<endl;
  15.         else
  16.             cout<<"Fail"<<endl;
  17.     }
  18.     return 0;
  19. }
複製代碼

作者: 博勛    時間: 2024-5-11 20:51

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     for(int t=0; t<3; t++)
  6.     {
  7.         string str;
  8.         int n[5];
  9.         getline(cin, str);
  10.         for(int i=0; i<5; i++)
  11.             n[i]=str[i]-'0';
  12.         int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  13.         if(res==str[5]-'A'+1)
  14.             cout<<"Pass"<<endl;
  15.         else
  16.             cout<<"Fail"<<endl;
  17.     }
  18.     return 0;
  19. }
複製代碼

作者: 黃兆駿    時間: 2024-5-11 20:55

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. for(int t=0;t<3;t++)
  5. {
  6.   string str;
  7.   int n[5];
  8.   getline(cin,str);
  9. for(int i=0;i<5;i++)
  10.   n[i]=str[i]-'0';
  11.   int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
  12. if(res==str[5]-'A'+1)
  13.   cout<<"Pass"<<endl;
  14. else
  15.   cout<<"Fail"<<endl;
  16. }
  17. return 0;
  18. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2