標題:
606 檢驗學號
[打印本頁]
作者:
陳曜誌
時間:
2024-9-9 12:49
標題:
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-9-13 20:54
#include <bits/stdc++.h>
using namespace std;
string str;
int n[5];
int main()
{
for(int i=0;i<3;i++)
{
cin>>str;
for(int j=0;j<5;j++)
n[j]=str[j]-'0';
int x=((n[0]+n[2]+n[4])+(n[1]+n[3])*5)%26;
if(x==str[5]-'A'+1)
cout << "Pass"<< endl;
else
cout << "Fail"<< endl;
}
return 0;
}
複製代碼
作者:
吳侑諶
時間:
2024-9-13 20:55
本帖最後由 吳侑諶 於 2024-9-20 19:34 編輯
#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-9-13 20:56
#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-9-13 20:56
#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;
}
}
複製代碼
作者:
聿均
時間:
2024-9-13 21:03
#include <bits/stdc++.h>
using namespace std;
int main()
{
for(int j=0;j<3;j++){
string str;
int n[5];
cin>>str;
for(int i=0;i<str.size();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-9-20 19:46
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int i=0;i<3;i++)
{
string str;
cin>>str;
int n[5];
for(int j=0;j<5;j++)
{
n[j]=str[j]-'0';
}
int res=((n[0]+n[2]+n[4])+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1) //'A'-'A'+1
{
cout<<"Pass";
}
else
{
cout<<"Fail";
}
}
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2024-10-25 19:18
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int i=0;i<3;i++)
{
string str;
cin>>str;
int n[5];
for(int j=0;j<5;j++)
{
n[j]=str[j];
}
int res=((n[0]+n[2]+n[4])+(n[1]+n[3])*5)%26;
if(res==str[5]-'A'+1)
{
cout<<"Pass"<<'\n';
}
else
{
cout<<"Fail"<<'\n';
}
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2