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