fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a = 3;
  7. float b = 1.2;
  8. char anne = a;
  9.  
  10. cout<<a<<endl;
  11. cout<<b<<endl;
  12. cout<<anne;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 4472KB
stdin
Standard input is empty
stdout
3
1.2