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
var | |
a, b : Real; | |
begin | |
Readln (a, b); | |
if a > b then | |
Writeln ("Min: ", b, ", Max: ", a) | |
else | |
Writeln ("Min: ", a, ", Max: ", b); | |
end. |
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
<snippet> | |
<content><![CDATA[ | |
#include <stdio.h> | |
#define SIZE 10000 | |
int main () | |
{ | |
// freopen ("input.txt", "r", stdin); | |
// freopen ("output.txt", "w", stdout); |
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
Pojects: | |
☐ Test #1 | |
☐ Test #2 | |
☐ Test #3 | |
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; | |
// ifstream cin ("input.txt"); | |
// ofstream cout ("output.txt"); | |
struct elem | |
{ | |
int n; | |
elem* next; |
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 <fstream> | |
using namespace std; | |
ifstream cin ("input.txt"); | |
ofstream cout ("output.txt"); | |
int main () | |
{ | |
NewerOlder