当前位置: 代码迷 >> C语言 >> 帮帮做题~~~!菜鸟问的题~!!
  详细解决方案

帮帮做题~~~!菜鸟问的题~!!

热度:155   发布时间:2005-11-04 12:01:00.0
帮帮做题~~~!菜鸟问的题~!!

1,用循环语句输出九九乘法表。
2,计算并输出一个整数各位数字之和,如5331的各位之和是5+3+3+1。


----------------解决方案--------------------------------------------------------

献丑了!
main()
{int i,j,sum;
sum=0;
for(i=1;i<=9;i++)
for(j=1;j<=9;j++)
{sum=j*i;
printf("%8d",sum);
if(i==9)
printf("\n");}
}


----------------解决方案--------------------------------------------------------
//九九乘法表:

#include<stdio.h>
#include<conio.h>
main()
{
int i,j;
for(i=1;i<=9;i++)
{
for(j=1;j<=i;j++)
printf("%d*%d=%d ",i,j,i*j);
printf("\n");
}
getch();
}
/****************************************/

/* 第 2 题*/
#include<stdio.h>
#include<conio.h>
main()
{
unsigned long temp,n;
int i,a[10];
printf("Input a number:");
scanf("%ld",&n);
temp=n;
for(i=0;n!=0;i++)
{
a[i]=n%10;
n/=10;
}
printf("%d=",temp);
for(i=i-1;;i--)
{
printf("%d",a[i]);
if(i==0)break;
printf("+");
}
printf("\n");
getch();
}


----------------解决方案--------------------------------------------------------

我是一个刚刚接触到C语言一个小时的人
看看你们的这个东东,对我上机很有帮助,谢过了
羡慕


----------------解决方案--------------------------------------------------------
3楼的大侠
请问#include<conio.h>
表示什么?书上没看见~谢谢~


----------------解决方案--------------------------------------------------------
main()
{
int i,j;
clrscr();
for(i=1;i<=9;i++)
{ for(j=1;j<=i;j++)
printf("%d*%d=%-2d",j,i,i*j);
printf("\n");
}
getch();
}
肯定是个好程序,但就是显示不正常
----------------解决方案--------------------------------------------------------

main函数里面的getch().用来吃掉回车符号,这个函数在头函数<conio.h>里.
如果不加getch()的话,有时候再次输入数字或者字母会出现错误,这个你以后就会遇到了 呵呵


----------------解决方案--------------------------------------------------------
hi!
the person on the sixth floor,
I have a question ------------

what is the meaning of "clrscr()"
is it a function?
----------------解决方案--------------------------------------------------------
why don't you only use one sentence to explain the options!!!!!!
And idon't think your computer works very well!!isn't it??????
----------------解决方案--------------------------------------------------------
嘿嘿 那是清屏有的8楼
----------------解决方案--------------------------------------------------------
  相关解决方案