Search:

Type: Posts; User: Lucas525

Search: Search took 0.01 seconds.

  1. It's done! getche() was the command I was looking...

    It's done! getche() was the command I was looking for. So this is the program:


    #include <iostream>
    #include <conio.h>
    #include <cstring>


    using namespace std;
  2. I get what you want to say but when I press "a"...

    I get what you want to say but when I press "a" the input MUST stop and the program goes to output, in other words, it cannot allow me to input any more letters after "a".
  3. What I need is when I type in first letter for...

    What I need is when I type in first letter for example "b" and press ENTER to stay in the same line, don't want to go to a new line, even though I don't know if that's even possible.
  4. You have to input a few letters (not sentences!...

    You have to input a few letters (not sentences! ... and in the same line) and the input finishes when you enter "a", then you get a number of vowels and consonants as the result.
  5. Like I just wrote it. RIGHT: Input: b...

    Like I just wrote it.
    RIGHT:
    Input: b [ENTER] i [ENTER] G [ENTER] ....
    WRONG:
    Input:
    b [ENTER]
    i [ENTER]
    G [ENTER] ....

    ... or without having to press ENTER doesn't matter it just...
  6. No, I have to enter random number of letters and...

    No, I have to enter random number of letters and the input ends with little letter a, for example:

    Input: b i G h e K p a (and when I type in that last letter which has to be "a" it guves me a...
  7. How to input char variables in the same line?

    I have to make this program: I have to enter x number of letters in the same line and the program has to count vowels and consonants. So I've made a program that does all that except I don't know how...
Results 1 to 7 of 7