Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

구구단/이재경

From ZeroWiki
#include <stdio.h> 

main() 
{ 
int a;
int f;
printf("몇단인지 입력하세요 ");
scanf("%d",&a);
 for(f=1;f<=9;f=f+1)
{
  
  
printf("%d곱하기 %d는 %d입니다.\n",a,f,a*f);

}

	  
}