This file contains hidden or 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
| #pragma once | |
| #include <fstream> | |
| #include <string> | |
| void ReadFile( const char* FileName, char* StrBuf ){ | |
| std::ifstream ifs( FileName, std::ifstream::binary ); | |
| int len; | |
| ifs.seekg( 0, ifs.end ); | |
| len = static_cast< int >( ifs.tellg() ); |
This file contains hidden or 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> | |
| using namespace std; | |
| int main(){ | |
| int a = 0b1111; // 15 | |
| int b = 0xF; // 15 | |
| cout << a << endl << | |
| b << endl; |
This file contains hidden or 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
| fn main(){ | |
| println!("Hello World!"); | |
| } |
This file contains hidden or 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
| fn hello(){ | |
| println!("Hello"); | |
| } | |
| fn print_number(x: i32){ | |
| println!("{}", x); | |
| } | |
| fn print_numbers(x: i32, y: i32){ | |
| println!("{}, {}", x, y); |
This file contains hidden or 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
| /* | |
| * Raw String Literals use test. | |
| * The result is | |
| * This is a test string. | |
| * Can this contain break line? | |
| * | |
| */ | |
| #include <iostream> | |
| using namespace std; |
This file contains hidden or 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> | |
| using namespace std; | |
| constexpr unsigned long long int operator"" _K(unsigned long long int n){ | |
| return n*1024; | |
| } | |
| int main(){ | |
| std::cout << 1_K << endl; |
This file contains hidden or 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
| /* | |
| * judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0100&lang=jp | |
| * | |
| * give up | |
| */ | |
| #include <iostream> | |
| #include <utility> | |
| #include <set> | |
| #include <cmath> |
This file contains hidden or 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
| /* | |
| * judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0103&lang=jp | |
| * | |
| * AC | |
| */ | |
| #include <iostream> | |
| #include <string> | |
| using namespace std; |
This file contains hidden or 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
| /* | |
| * judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0104&lang=jp | |
| * ac | |
| */ | |
| #include <iostream> | |
| using namespace std; | |
| char field[108][108]; |
This file contains hidden or 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
| /* | |
| * AOJ1147: ICPC Socre Totalizer Software | |
| * AC | |
| */ | |
| #include <iostream> | |
| #include <algorithm> | |
| using namespace std; |
OlderNewer