Finished 2 of usaco

This commit is contained in:
2022-04-15 14:12:34 +02:00
parent a191aec9bb
commit 7a325e8818
3 changed files with 128 additions and 4 deletions

25
usaco/ch1/beads.cpp Normal file
View File

@@ -0,0 +1,25 @@
/*
ID: philipp17
PROG: beads
LANG: C++
*/
/* LANG can be C++11 or C++14 for those more recent releases */
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ofstream fout ("beads.out");
ifstream fin ("beads.in");
int n;
string s;
fin >> n >> s;
return 0;
}