This file contains 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
LAlt & i::Send, {3} | |
LAlt & e::Send, {2} | |
LAlt & n::Send, {1} | |
LAlt & o::Send, {0} | |
LAlt & l::Send, {4} | |
LAlt & y::Send, {6} | |
LAlt & u::Send, {5} | |
LAlt & '::Send, {7} | |
LAlt & )::Send, {8} |
This file contains 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 names = new[] | |
{ | |
"Ana", | |
"Felipe", | |
"Emillia" | |
}; | |
foreach (var name in names) | |
{ | |
Console.WriteLine($"Hello {name}"); |
This file contains 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
using System; | |
namespace Algorithms { | |
class CustomLinkedList { | |
Node head; | |
public class Node { | |
public int data; | |
public Node next; |
This file contains 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() | |
{ | |
char ch; | |
cin >> ch; | |
if(ch >= 65 && ch <= 90) | |
cout << “UpperCase character”; | |
else if(ch >= 97 && ch <= 122) | |
cout << “Lower Case Character”; |
OlderNewer