標題:
507 猜數字
[打印本頁]
作者:
李知易
時間:
2024-11-7 17:14
標題:
507 猜數字
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,製作一個4位數的猜數字系統,讓使用者先輸入一個4位數字,為猜數字的答案,接著再輸入三組數字,若數值、位置與答案完全相同,則為A;若數值與答案相同但位置不同,則為 B,最後依序輸出猜數字的結果。
提示:每個4位數數值皆不能重複。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
四組4位數字
輸出說明
猜數字結果
範例輸入
1350
1234
5678
1305
範例輸出
1A1B
0A1B
2A2B
本帖隱藏的內容需要回復才可以瀏覽
作者:
李穎俊
時間:
前天 14:27
本帖最後由 李穎俊 於 2024-11-23 14:29 編輯
#include<bits/stdc++.h>
using namespace std;
string str;
int main(){
getline(cin,str);
for(int i=0;i<3;i++){
string guess;
int a=0,b=0;
getline(cin,guess);
for(int j=0;j<4;j++){
int index=str.find(guess[j]);
if(index==j)
a++;
else if(index!=-1)
b++;
}
cout<<a<<"A"<<b<<"B"<<endl;
}
return 0;
}
複製代碼
作者:
張淯祺
時間:
前天 14:30
#include<bits/stdc++.h>
using namespace std;
string str;
int main()
{
getline(cin,str);
for(int i=0;i<3;i++)
{
string guess;
int a=0,b=0;
getline(cin,guess);
for(int j=0;j<4;j++)
{
int index=str.find(guess[j]);
if(index==j)
a++;
else if(index!=-1)
b++;
}
cout<<a<<"A"<<b<<"B"<<endl;
}
return 0;
}
複製代碼
作者:
陳奕睿
時間:
前天 14:32
#include<bits/stdc++.h>
using namespace std;
string str;
int main()
{
getline(cin,str);
for(int i=0;i<3;i++)
{
string guess;
int a=0,b=0;
getline(cin,guess);
for(int j=0;j<4;j++)
{
int index=(str.find(guess[j]));
if(index==j)
a++;
else if(index!=-1)
b++;
}
cout<<a<<"A"<<b<<"B"<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2