C++入门经典-例3.23-使用嵌套循环输出乘法口诀表

C++入门经典-例3.23-使用嵌套循环输出乘法口诀表

1:代码如下:

// 3.23.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
using namespace std;
void main(void)
{
    int i,j;
    i=1;
    j=1;
    for(i=1;i<10;i++)
    {
        for(j=1;jC++入门经典-例3.23-使用嵌套循环输出乘法口诀表_第1张图片

posted @ 2017-09-14 08:54 一串字符串 阅读(...) 评论(...) 编辑 收藏

你可能感兴趣的:(C++)