fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. double temperature = 96.5;
  6.  
  7. if (temperature > 94) {
  8. cout << "Денатурация ДНК" << endl;
  9. }
  10. else if (temperature >= 50 && temperature <= 65) {
  11. cout << "Отжиг праймеров" << endl;
  12. }
  13. else {
  14. cout << "Режим ожидания" << endl;
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 5320KB
stdin
55
stdout
Денатурация ДНК