Visual Studio에서 int 형식 명령 줄 인수를받는 방법 (C++)
2513 단어 C++금형VisualStudio명령줄 인수쓰루 카메산
환경
명령줄 인수 설정
받은 문자열형의 값을 int형으로 변환
std::stoi
를 사용하여 문자열 유형을 int 형식으로 변환합니다. std::stoi
는 #include<string>
와 #include<string>
, using namespace std;
가 없으면 오류가 발생한다고 생각됩니다. #include <iostream>
#include<string>
using namespace std;
int main(int argc, char* argv[])
{
int atama, asi; //変数の宣言
//引数を変数に格納.
atama = std::stoi(argv[1]);
asi = std::stoi(argv[2]);
return 0;
}
샘플 코드 (쓰루 카메산)
#include <iostream>
#include<string>
using namespace std;
int main(int argc, char* argv[])
{
int atama, asi, turu, kame; //変数の宣言
//引数を変数に格納.
atama = std::stoi(argv[1]);
asi = std::stoi(argv[2]);
//鶴と亀の数の計算
turu = 2 * atama - asi / 2;
kame = atama - turu;
if (turu < 0 || kame < 0)
{
cout << "error" << std::endl;
}
else
{
cout << "鶴の数:" << turu << std::endl;
cout << "亀の数:" << kame << std::endl;
}
return 0;
}
#include <iostream>
#include<string>
using namespace std;
int main(int argc, char* argv[])
{
int atama, asi, turu, kame; //変数の宣言
//引数を変数に格納.
atama = std::stoi(argv[1]);
asi = std::stoi(argv[2]);
//鶴と亀の数の計算
turu = 2 * atama - asi / 2;
kame = atama - turu;
if (turu < 0 || kame < 0)
{
cout << "error" << std::endl;
}
else
{
cout << "鶴の数:" << turu << std::endl;
cout << "亀の数:" << kame << std::endl;
}
return 0;
}
鶴の数:5
亀の数:1
이 기사를 쓴 경위·감상
argv[1]
등으로부터 받으면 문자열형이 되어 있으므로 int형에 사용과 Python과 같이 int(argv[1])
등으로 하면 에러가 나왔다. (int)argv[1]
std::stoi
가 있었기 때문에 이것을 사용할 수있었습니다. 참고문헌
Reference
이 문제에 관하여(Visual Studio에서 int 형식 명령 줄 인수를받는 방법 (C++)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sasakura-jp/items/4fc8d378de485dca684e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)