30/09/2018, 23:57

Cho em hỏi về hackerrank

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

Nguyễn Xuân Phúc viết 02:01 ngày 01/10/2018

em đọc kỹ đề bài và source template của nó

Hiếu Lê viết 02:05 ngày 01/10/2018

Trên kia nó chỉ là khai báo mấy cái tiền INT và double thôi mà. Chả hiểu bài tập là gì nữa

Bài liên quan
0