English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i need this output... we're using turbo c++..
*
**
***
****
*****
******

2006-08-02 20:04:01 · 3 answers · asked by ivan_dlcrz 1 in Education & Reference Homework Help

3 answers

#include
#include
void main()
{
printf("*\n");
printf("**\n"),
printf("***\n"),
printf("****\n");
printf("*****\n");
printf("******\n");
getch();
}

2006-08-02 20:19:04 · answer #1 · answered by jack_robinson31 3 · 0 0

#include
#include
void main()
{
for ( i=1; i<=7; i++)
{
Print("*\n");
}

2006-08-03 03:39:54 · answer #2 · answered by fzaa3's lover 4 · 0 0

hmm.. yes yes...



i don't know -_-

2006-08-03 03:22:44 · answer #3 · answered by d4rk_w4t3r 3 · 0 0

fedest.com, questions and answers