vote up -9 vote down star

Hi
Our dr gave this question:

Write a c++ program that get a word from the user 4 words in CAPITAL LETTERS and the output is the same words but in small letters.

If the input has some small letters the program will say that [ you have "N" small letters in your four words .. rewrite it in capital letters please ]

Really too hard for me :(

flag
13  
If you won't try how will you learn ? better approach will be writing your own program, and then if you have problems - ask here. – Dani Nov 5 at 15:17
3  
Don't be too harsh on the guy, dudes! – Moayad Mardini Nov 5 at 15:21
1  
7 down votes is excessive. But he does need to post code if he wants help. – Martin York Nov 5 at 17:19
Wow... just look at the hostility here and why the downgrading.... maybe its his 1st time coding in c++ just remember when you all first started programming and give the guy a break – Red Serpent Nov 9 at 15:22
I remember when I started programming. Sure as hell didn't go posting to SO without doing some research myself first. There were some gopher resources I frequented though. – Zano Nov 14 at 20:37

4 Answers

vote up 25 vote down

Do you know how to:

  • get input as a string?

  • loop through the characters of a string?

  • test whether a character is uppercase or lowercase?

  • change a character from uppercase to lowercase?

If so, then you already know enough to answer this question. Break it up into smaller pieces and it should be quite manageable.

If you try it and run into problems, then ask another question and tell us what you've tried; people here are generally more than happy to help someone who has shown they made an effort (after all, we were all beginners once!). But giving up before even trying is the worst thing you can do here.

link|flag
2  
Thank you for actually trying to help a poor student. This is the type of answer we should be posting for newbies. They should always learn how to breakdown the problem first. – Marcin Nov 5 at 15:35
2  
Agree with this, its not like he was trying to get someone to write it for him.. no need for the down votes / rude comments – Stowelly Nov 5 at 15:53
2  
Congrats on earning the coveted [reversal] badge on this one. – Chris Lutz Nov 5 at 22:41
vote up 0 vote down

Start from reading about IO streaming here. Then here about some STL algorithms.

link|flag
1  
This might be a little too complicated for a beginner student. A simple cin >> ... ; would probably be sufficient for a program like this without delving into streaming as a concept – Marcin Nov 5 at 15:41
1  
He's not going to need any of the STL algorithms for this problem – Graphics Noob Nov 5 at 15:45
@Graphics Noob, I'd use for_each for solving this problem. – Kirill V. Lyadvinsky Nov 5 at 17:46
vote up 0 vote down

I like mmyers response above; these are the questions that need to be answered. Learning to program and be a software engineer is not only about the code you write but also learning how to approach a problem, breaking it down into manageable components and then developing a solution.

I also agree with the comment above -- don't ask us to do your homework for you. Show us some code, to let us know that you tried and then we'll be glad to help.

link|flag
vote up 0 vote down

Have a look at a couple of source examples from cplusplus.com

Input streaming

// example on extraction
#include <iostream>
using namespace std;

int main () {
  int n;
  char str[10];

  cout << "Enter a number: ";
  cin >> n;
  cout << "You have entered: " << n << endl;

  cout << "Enter a hexadecimal number: ";
  cin >> hex >> n;            // manipulator
  cout << "Its decimal equivalent is: " << n << endl;

  cout << "Enter a word: ";
  cin.width (10);        // limit width
  cin >> str;
  cout << "The first 9 chars of your word are: " << str << endl;

  return 0;
}

Case conversion

/* toupper example */
#include <stdio.h>
#include <ctype.h>
int main ()
{
  int i=0;
  char str[]="Test String.\n";
  char c;
  while (str[i])
  {
    c=str[i];
    putchar (toupper(c));
    i++;
  }
  return 0;
}

Those should get you started.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.