Answers for "life the universe and everything solution c++"

C++
0

life the universe and everything solution c++

#include <iostream>

int main()
{
    int input ;
    while( std::cin >> input && input != 42 ) std::cout << '\t' << input << '\n' ;
    while( std::cin >> input ) ;
}
Posted by: Guest on October-23-2020

Code answers related to "life the universe and everything solution c++"

Browse Popular Code Answers by Language