C++(if else,switch)
Python if else:
Traffic_light = 'r'
if Traffic_light = 'r':
print('red')
elif Traffic_light = 'g':
print('green')
else:
print('yellow')
C++ if else
#include<iosstream>
int main(){
char Traffic_light = 'r';
if(Traffic_light = 'r...
dragonquest.hashnode.dev1 min read