9*9乘法表

[复制链接]
2737|3
 楼主| woshiwowo 发表于 2009-10-7 14:03 | 显示全部楼层 |阅读模式
#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
int main(int argc, char* argv[])
{
int i,j,k;
for(i=1;i<10;i++)
{
  for(j=1;j<=i;j++)
  {
   printf("%d*%d=%-4d",j,i,i*j);
  }
  printf("\n");
}
getch();
}
午时龙且 发表于 2011-1-13 13:13 | 显示全部楼层
very good
wuyiyan 发表于 2011-3-4 11:19 | 显示全部楼层
#include "stdafx.h"
f:\9x9\cpp1.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory什么意思?
wuyiyan 发表于 2011-3-4 11:23 | 显示全部楼层
我把那东西删了  就没事了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

9

主题

35

帖子

1

粉丝
快速回复 在线客服 返回列表 返回顶部