User profile: sofea

This account has limited functionality.
This was likely due to the user being reported by not following some specific rules for a service in this website.
If you believe this to be an error, please use our Contact form
User info
User name:sofea
History
Joined:
Number of posts:3
Latest posts:

list
input : 3 4 5 5 0 output : 4: 3 4 5 5 #include<iostream> #include<list> #include<string> u...

Stack (display integer that push onto stack with its size)
input : 2 //(number of case) 4 5 6 0 output : 3: 6 5 4 0 input : 1 2 3 0 outp...

Stack (postfix evaluator)
#include <iostream> #include <stack> #include <string.h> #include <stdlib.h> using namespace s...