Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion 104A - Blackjack.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
//4055407 Jul 12, 2013 6:41:00 PM fuwutu 104A - Blackjack GNU C++0x Accepted 15 ms 0 KB
#include <iostream>
#include <bits/stdc++.h>

using namespace std;

int main()
{
ios_base::sync_with_stdio(NULL) ;
cin.tie(NULL) ;
int n;
cin >> n;
if (n <= 10 || n > 21)
Expand Down
2 changes: 1 addition & 1 deletion 116A - Tram.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//4006879 Jul 3, 2013 5:53:08 PM fuwutu 116A - Tram GNU C++0x Accepted 15 ms 0 KB
#include <cstdio>
#include <bits/stdc++.h>

int main()
{
Expand Down