Mình có xem video của datletran về giải bài tập. Thực ra cũng không có gì
// Declare second integer, double, and String variables.
int my_int;
double my_double;
std::string my_string;
// Read and save an integer, double, and String to your variables.
std::cin >> my_int;
std::cin >> my_double;
std::getline(std::cin, my_string);
// Print the sum of both integer variables on a new line.
std::cout << my_int + i << std:: endl;
// Print the sum of the double variables on a new line.
std::cout << my_double + d << endl;
// Concatenate and print the String variables on a new line
// The 's' variable above should be printed first.
std::cout << s + my_string << std:: endl;
Chả hiểu nó tính kiểu gì mà lại là:
16
8.0
HackerRank is the best place to learn and practice coding! bài này là bài 01 của hackerrank