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. cout<<a<<endl;
  10. cout<<b<<endl;
  11. cout<<anne;
  12. }
Success #stdin #stdout 0s 4268KB
stdin
Standard input is empty
stdout
3
1.2
a