mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
25 lines
426 B
C++
25 lines
426 B
C++
|
|
#include <string>
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main (int argc, char* argv[]) {
|
||
|
|
|
||
|
|
int j = 0;
|
||
|
|
|
||
|
|
for (int i=0; i<argc; i++) {
|
||
|
|
std::cout << "XX: "
|
||
|
|
<< i
|
||
|
|
<< " "
|
||
|
|
<< argv[i]
|
||
|
|
<< std::endl;
|
||
|
|
}
|
||
|
|
|
||
|
|
std::string message = "Hello, World!";
|
||
|
|
|
||
|
|
std::cout << std::endl;
|
||
|
|
std::cout << message << std::endl;
|
||
|
|
std::cout << std::endl;
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|