Quick actions

cmd+k|ctrl+k

Navigation

Languages

switch-case

Snippet info

Language

Cpp

Visibility

public

Author

ramadhanzaqi77

Created

2023-03-14T04:18:28.337317Z

Updated

2023-03-14T04:18:28.337317Z

switch (variabel) { 
    case <value>:
        // blok kode
        break;
    case <value>:
        // blok kode
        break;
    default:
        // blok kode
}
INFO