This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int cn; | |
ostringstream oss; | |
cin >> cn; | |
for (int i = 0; i < cn; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
void clearIO() | |
{ | |
int ch; | |
while ((ch = std::cin.get()) != std::cin.eof() && ch != '\n'); | |
} | |
int main(int argc, char* argv[]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cmath> | |
#include <algorithm> | |
#include <iomanip> | |
void clearIO() | |
{ | |
int ch; | |
while ((ch = std::cin.get()) != std::cin.eof() && ch != '\n'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
#include <sstream> | |
#include <string> | |
#include <vector> | |
// Prototypes | |
std::string calculateMode(std::vector<int> array); | |
int main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <sstream> | |
// Prototype | |
void clearBuf(); | |
int main(){ | |
int lines; | |
std::cin >> lines; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int cn; | |
ostringstream out; | |
cin >> cn; | |
for(int i = 0; i < cn; i++){ | |
long double term, counter = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int n; | |
cin >> n; | |
for(int i = 1; i < 11; i++){ | |
cout << n << " x " << i << " = " << n*i << "\n"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### yo probe esta: | |
—– BEGIN LICENSE —– | |
J2TeaM | |
2 User License | |
EA7E-940282 | |
45CB0D8F 09100037 7D1056EB A1DDC1A2 | |
39C102C5 DF8D0BF0 FC3B1A94 4F2892B4 | |
0AEE61BA 65758D3B 2EED551F A3E3478C | |
C1C0E04E CA4E4541 1FC1A2C1 3F5FB6DB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GDM configuration storage | |
[daemon] | |
# Uncoment the line below to force the login screen to use Xorg | |
WaylandEnable=false | |
[security] | |
[xdmcp] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
long long polygons; | |
cin >> polygons; | |
ostringstream outputText; | |
for (long long c = 0; c < polygons; c++) |
OlderNewer