Search found 1 match

by lordalaqua
Sat Apr 05, 2014 1:28 am
Forum: Volume 4 (400-499)
Topic: 458 - The Decoder
Replies: 71
Views: 28498

458 Cannot understand why WA

Hello, I was eventually able to solve this problem using std::getline() for strings, but my first attempt was like this:


#include<iostream>

int main()
{
do
{
char input;
input = std::cin.get();
char output;
if(31 < input && input < 127) //Printable ASCII characters
{
output = input - 7 ...

Go to advanced search