PS알못 OrbitHv의 PS logo PS알못 OrbitHv의 PS

CLASS 1 CLASS 2 CLASS 3 CLASS 4 CLASS 5 CLASS 6 CLASS 7 CLASS 8 CLASS 9 CLASS 10 ESSENTIAL

⑤ Bronze Ⅴ ④ Bronze Ⅳ ③ Bronze Ⅲ ② Bronze Ⅱ ① Bronze Ⅰ
⑤ Silver Ⅴ ④ Silver Ⅳ ③ Silver Ⅲ ② Silver Ⅱ ① Silver Ⅰ
⑤ Gold Ⅴ ④ Gold Ⅳ ③ Gold Ⅲ ② Gold Ⅱ ① Gold Ⅰ
⑤ Platinum Ⅴ ④ Platinum Ⅳ ③ Platinum Ⅲ ② Platinum Ⅱ ① Platinum Ⅰ
⑤ Diamond Ⅴ ④ Diamond Ⅳ ③ Diamond Ⅲ ② Diamond Ⅱ ① Diamond Ⅰ
⑤ Ruby Ⅴ ④ Ruby Ⅳ ③ Ruby Ⅲ ② Ruby Ⅱ ① Ruby Ⅰ
? Unrated

test content

Col1 Col2
Cell11 Cell12
Cell21 Cell22

풀이

Python 3

#include <stdio.h>

int main() {
    int n = 5;
    // Why is it 21??
    char c[21] = "Hello World!";
    /*
    Dunno
    */

    for (int i = 0; i < n; i++) {
        if (n / i == 0) {
            printf("%d", i);
        }
    }
}
#include "algostuff.hpp"
using namespace std;

bool bothEvenOrOdd (int elem1, int elem2)
{
    return elem1 % 2 == elem2 % 2;
}

int main()
{
    vector<int> coll1;
    list<int> coll2;

    float m = 40.0f;

    INSERT_ELEMENTS(coll1,1,7);
    INSERT_ELEMENTS(coll2,3,9);

    PRINT_ELEMENTS(coll1,"coll1: \n");
    PRINT_ELEMENTS(coll2,"coll2: \n");

    // check whether both collections are equal
    if (equal (coll1.begin(), coll1.end(),  // first range
               coll2.begin())) {            // second range
        cout << "coll1 == coll2" << endl;
    } /* TODO Shouldn't there be an 'else' case? */

    // check for corresponding even and odd elements
    if (equal (coll1.begin(), coll1.end(),  // first range
               coll2.begin(),               // second range
               bothEvenOrOdd)) {            // comparison criterion
        cout << "even and odd elements correspond" << endl;
    }
}
/**
 * This is about <code>ClassName</code>
 * {@link}
 * @author author
 * @deprecated use <code>OtherClass</code>
 */

public class ClassName<E> extends AnyClass implements B {
    enum Color { RED, GREEN, BLUE };
    /* This comment may span multiple lines. */
    static Object staticField;
    // This comment may span only this line.
    private E field;
    private AbstractClassName field2;
    // TASK: refactor
    @SuppressWarnings(value="all")
    public int foo(Integer parameter) {
        abstractMethod(inheritedField);
        int local = 42 * hashCode();
        staticMethod();
        return bar(local) + parameter;
    }
}
a, b = map(int, input().split())
op = ['+', '-', '*', '/', '%']

print([eval("{}{}{}".format(a, c, b)) for c in op])
<html>
    <head>
        <meta content="text/html">
        <title>HTML Highlighting Preferences</title>
    </head>
    <body>
        <!--we need a flaming logo! -->
        <p>three&nbsp;&nbsp;&nbsp;spaces</p>
    </body>
</html>
@import url("../sample2.css")
/* Sample Styles */
BODY {
    color: black;
    background-color: rgb(181, 253, 211);
    text-align: center;
    font-family: "Heisei Mincho W3", serif
}
#content > div *.links a[href~="http://"]:hover {
    text-decoration: underline;
}