Warum gibt die externe Konsole von VS Code (cmd.exe) meine Eingaben wieder, wenn ich ein C++-Programm ausführe, und wie C++

Programme in C++. Entwicklerforum
Anonymous
 Warum gibt die externe Konsole von VS Code (cmd.exe) meine Eingaben wieder, wenn ich ein C++-Programm ausführe, und wie

Post by Anonymous »

Mein Code:

Code: Select all

#include 
#include 
#include 
using namespace std;

int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);

int n;
cin >> n;

while (n--) {
string word;
cin >> word;

if (word.length() > 10) {
cout

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post