Hỏi cách sửa lỗi invalid operands of types 'double' and 'int' to binary 'operator%'

Mình bị lỗi invalid operands of types ‘double’ and ‘int’ to binary ‘operator%’ ai biết cách gì giúp mình với

#include <iostream>
int main () {
	double vinh = 20;	
	int remainder = vinh % 6	
	std::cout << remainder;	
	return 0;

Mất căn bản quá bạn ơi. Số thực sao có thể chia nguyên được? vinh % 6 là tào lao nhé.

The best way to learn C/C++ is to consult the tutorial manual before you start asking. Back to your question: In C/C++, you can use the fmod() function to get the remainder of a division (or modulo).

int remainder = (int)fmod(vinh, 6);
double dRemainder = fmod(vinh, 6); // double remainder
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?