diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..cb996a9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "iostream": "cpp" + } +} \ No newline at end of file diff --git a/Akaishi_hello.cpp b/Akaishi_hello.cpp new file mode 100644 index 0000000..c4b0b68 --- /dev/null +++ b/Akaishi_hello.cpp @@ -0,0 +1,24 @@ +#include + +using namespace std; + +int main() +{ + int a, b; + cin >> a; + cin >> b; + if (a < b) + { + cout << a; + cout << "<" << b << endl; + } + else + { + cout << a; + cout << ">=" << b << endl; + } + + for (int i = 0; i < 10; ++i) + cout << "Hello World!" << endl; + return 0; +} \ No newline at end of file diff --git a/hello.cpp b/hello.cpp deleted file mode 100644 index ee44dda..0000000 --- a/hello.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include - -using namespace std; - -int main() -{ - cout << "Hello World!" << endl; - return 0; -} \ No newline at end of file