Hỏi cách ép kiểu sang double

Có cách nào ép kiểu sang double cho đoạn code này k ạ?

#include <iostream>
#include <iomanip>
#include <cmath>
#include <string>
using namespace std;
int dequy(int&x , int&z) {
   
    z = z/5;
    return z;
}
int main() {
    int z = 34;
    int x = 100;
   
    cout << dequy(x,z) << endl;
    cout << z;
}

bạn đọc bài này: https://cpp.daynhauhoc.com/4/2-ep-kieu-du-lieu/

4 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?