標題:
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
#include <bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0;t<3;t++)
{
string str;
int n[5];
getline(cin,str);
for(int i=0;i<5;i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
作者:
宥竣
時間:
2024-5-11 20:43
#include <bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0;t<3;t++)
{
string s;
int n[5];
getline(cin,s);
for(int i=0;i<5;i++)
n[i]=s[i]-'0';
int m=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(m==s[5]-'A'+1) cout<<"Pass\n";
else cout<<"Fail\n";
}
return 0;
}
複製代碼
作者:
張博翔
時間:
2024-5-11 20:43
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0; t<3; t++)
{
string str;
int n[5];
getline(cin,str);
for(int i=0; i<5; i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(res==[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
作者:
林哲弘
時間:
2024-5-11 20:44
#include <bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0;t<3;t++)
{
string str;
int n[5];
getline(cin,str);
for(int i=0;i<5;i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
作者:
盧禹丞
時間:
2024-5-11 20:48
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0;t<3;t++)
{
string str;
int n[5];
getline(cin, str);
for(int i=0;i<5;i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+n[i]+n[3])*5)%26;
if(res==str[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
作者:
博勛
時間:
2024-5-11 20:51
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int t=0; t<3; t++)
{
string str;
int n[5];
getline(cin, str);
for(int i=0; i<5; i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
作者:
黃兆駿
時間:
2024-5-11 20:55
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int t=0;t<3;t++)
{
string str;
int n[5];
getline(cin,str);
for(int i=0;i<5;i++)
n[i]=str[i]-'0';
int res=(n[0]+n[2]+n[4]+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1)
cout<<"Pass"<<endl;
else
cout<<"Fail"<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2