initial commit
This commit is contained in:
9
C++/lesson1/task2.cpp
Normal file
9
C++/lesson1/task2.cpp
Normal file
@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
int main() {
|
||||
std::string a = "Hello";
|
||||
std::string b = "Привет";
|
||||
std::cout << a.length() << '\n';
|
||||
std::cout << b.length() << '\n';
|
||||
}
|
Reference in New Issue
Block a user