Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
324B

  1. #include<iostream>
  2. #include<iomanip>
  3. using namespace std;
  4. int main() {
  5. cout << setprecision(17);
  6. cout << setw(10);
  7. cout << "Enter a float > ";
  8. float x;
  9. cin >> x;
  10. x = x + 1;
  11. cout << x << endl;
  12. cout << "Enter a double > ";
  13. double y;
  14. cin >> y;
  15. y = y + 1;
  16. cout << y << endl;
  17. }