No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
[CODE] #include <iostream> #include <string.h> #include <ctype.h> using namespace std; void RemoveSpaces (char *str); void Removevowels (char *str); int main() { system("Color 1A"); char myString[300]; char clear[300]; char cipher[300]; int selection; int x = 0; int i = 0; int opt; cout<<"Enter a string!"<<endl; cin.ignore(); cin.getline(myString,sizeof(myString)); cout<<"Plase select what you …
[CODE] #include <iostream> #include <iomanip> using namespace std; int main (){ system ("color f0"); string firstName, lastName, fullName; char middle; float score1, score2, score3, score4, score5, score6, score7; int N; cout<<"Student Grade Calculator"<<endl; cout<<endl; do{ cout<<"Please enter your first name, middle intial, and last name :"<<" "; cin>>firstName>>middle>>lastName; fullName=firstName+" "+middle+" …
[CODE] #include <iostream> #include <string.h> #include <ctype.h> using namespace std; int main() { system("Color 1A"); char clear[200]; char cipher[200]; int x,i; cout << "what do you want to do with your password " << endl; cout << "1 Encrypt your password " << endl; cout << "2 Decrypt your password …
C++ emergency need this word doc to be done and i can't do it my self cause it bit to hard for me plz help Write a program to survey people, that will generate statistics about their age profile. It will firstly ask for the sample size. Then it will …
The End.
doma18