mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-08 06:43:14 +08:00
fix: replace using namespace std with std::cin and std::cout
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
|
||||
int queue[10];
|
||||
int front = 0;
|
||||
|
||||
Reference in New Issue
Block a user