fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int tubes = 24;
  6. double weight = 0.152;
  7. char nucleotide = 'A';
  8. bool passed = true;
  9.  
  10. cout << "tubes: " << tubes << endl;
  11. cout << "weight: " << weight << endl;
  12. cout << "nucleotide: " << nucleotide << endl;
  13. cout << "passed: " << passed << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
tubes: 24
weight: 0.152
nucleotide: A
passed: 1