Տպել ներմուծված char տիպի սիմվոլի համապատասխան ASCII կոդը։
// input: 'a' -> output: 97 // input: 'A' -> output: 65 #include <iostream> int main() { char input; std::cin >> input; //put your code to print ASCII code }
// input: 'a' -> output: 97 // input: 'A' -> output: 65 #include <iostream> int main() { char input; std::cin >> input; //put your code to print ASCII code }