[Boj](b 2)2908定数
✅ stoi()
質問する
質問する
リンク
コード#コード# #include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str1, str2;
cin >> str1 >> str2;
char tmp;
tmp = str1[0];
str1[0] = str1[2];
str1[2] = tmp;
tmp = str2[0];
str2[0] = str2[2];
str2[2] = tmp;
if (stoi(str1) < stoi(str2)) cout << str2 << "\n";
else
cout << str1 << "\n";
return 0;
}
Reference
この問題について([Boj](b 2)2908定数), 我々は、より多くの情報をここで見つけました
https://velog.io/@peanut_/boj-b2-상수
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str1, str2;
cin >> str1 >> str2;
char tmp;
tmp = str1[0];
str1[0] = str1[2];
str1[2] = tmp;
tmp = str2[0];
str2[0] = str2[2];
str2[2] = tmp;
if (stoi(str1) < stoi(str2)) cout << str2 << "\n";
else
cout << str1 << "\n";
return 0;
}
Reference
この問題について([Boj](b 2)2908定数), 我々は、より多くの情報をここで見つけました https://velog.io/@peanut_/boj-b2-상수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol