Search:

Type: Posts; User: rbreakey

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,014

    #include int main() { int i;...

    #include <stdio.h>

    int main()
    {
    int i;
    int max;

    scanf("%d%*c", &max);

    while(max <= 10 && max >=2)
  2. Replies
    6
    Views
    2,014

    #include int main() { int i;...

    #include <stdio.h>

    int main()
    {
    int i;
    int max;

    scanf("%d%*c", &max);

    for(i = 1; i < max; i++)
  3. Replies
    6
    Views
    2,014

    Need Help With Simple Iteration Program

    I have been asked to write a program that creates the following pattern without simply printing this sequentially :

    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8
    1 2 3 4 5 6 7
    1 2 3 4 5 6
    1 2 3 4 5
    1...
Results 1 to 3 of 3