Napisz w C++ program, który będzie wczytywał litery, znaki i cyfry, i wyświetlał, jaki ten znak ma numer ASCII. Jeśli długość wprowadzanej danej będzie różna od 1, program ma wyświetlić komunikat o nieprawidłowej danej.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Link do kodu:
http://pastebin.com/TYzR5WUG
Kod:
#include <iostream>
#include <cstdlib>
#include <cstring>
int main()
{
char* str;
str = (char *)malloc(1024);
while (true)
{
std::cin >> str;
if (strlen(str) != 1)
std::cout << "To nie jest znak!\n"; else
std::cout << "Kod ASCII: " << (int)str[0] << "\n";
}
}