Advertisement
Guest User

casting wtf

a guest
Oct 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. int n1;
  9. float n1_float = ( (float) n1 ); /* riempie la variabile n1_float con il valore di n1 ma convertito in float */
  10.  
  11. cin >> n1;
  12. cout << "n1: " << n1 << endl;
  13. cout << "n1_float:" << n1_float << endl;
  14.  
  15. return 0;
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement