9*9乘法表
#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();
} very good #include "stdafx.h"
f:\9x9\cpp1.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory什么意思? 我把那东西删了就没事了
页:
[1]