em mới tập dùng hàm void thì gặp lỗi này không biết sửa sao mong mọi người chỉ
#include<iostream>
using namespace std;
void logic(double s, int v, int t) {
s = v * t;
}
void nhap(int v,int t) {
cout << "nhap van toc: " << endl;
cin >> v;
cout << "nhap thoi gian: " << endl;
cin >> t;
}
void xuat(double s) {
cout << "quang duong ban da di la: " << s << endl;
}
int main() {
double quangduong;
int vantoc ;
int tg ;
nhap(vantoc, tg);
logic(quangduong,vantoc, tg);
xuat(quangduong);
return 0;
}
![image|415x82](upload://2YoXqQcYOUoYo14ASmW5A3PiEFg.png)