Answers for "c++ basic cast"

C++
-1

cast c++

#include <iostream>
using namespace std;
int main(){
	int x = 4;
	int y = 2;
	cout<<"La divisione dei valori e': "<<(float)y/x<<endl;
}
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language