CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: confused93

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    7,397

    Re: How to exchange strings in field p[5];

    Thanks, it working.. but i need to solve this in my way, can anybody help me?
  2. Replies
    7
    Views
    7,397

    Re: How to exchange strings in field p[5];

    I have no errors, program only dont do, what i want


    #include <iostream>
    using namespace std;

    int main(){
    const int N = 26;
    char abeceda[N] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',...
  3. Replies
    7
    Views
    7,397

    How to exchange strings in field p[5];

    Hello i need exchange strings in field, but i have no more ideas how to do that.
    For example:
    {"Hi", "Hello", "Goodbye", "Morning"};
    to
    {"Hello", "Hi", "Goodbye", "Morning"};

    i tried this, but...
  4. Replies
    12
    Views
    2,205

    Re: Pyramid of stars with spaces

    I solved it. Thank you.
  5. Replies
    12
    Views
    2,205

    Re: Pyramid of stars with spaces

    Yes, i have function.cpp, function.h and main.cpp but all what i need is logical condition into for cycle


    void pyramida(int N, char symbol){

    cout << symbol << endl;
    for(int i=0;...
  6. Replies
    12
    Views
    2,205

    Re: Pyramid of stars with spaces

    i need to find right logical condition into for
  7. Replies
    12
    Views
    2,205

    Re: Pyramid of stars with spaces

    I need program which draw this nice pyramid with for cycle, N=number of lines...
    i need only content of for cycle
  8. Replies
    12
    Views
    2,205

    Re: Pyramid of stars with spaces

    Yes it is homework, but i really don't know how to solve it. I spend with it about hour.:/
  9. Replies
    12
    Views
    2,205

    Pyramid of stars with spaces

    Hello, i'm totally beginer, can somebody help me solve this (for cycle)?

    31193

    Thanks in advance. :)
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured