Skip to content

Commit 4eefe58

Browse files
committed
99 multiplication
0 parents  commit 4eefe58

6 files changed

Lines changed: 36 additions & 0 deletions

File tree

.vs/ProjectSettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"CurrentProjectSetting": "\u65E0\u914D\u7F6E"
3+
}

.vs/VSWorkspaceState.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"ExpandedNodes": [
3+
""
4+
],
5+
"PreviewInSolutionExplorer": false
6+
}

.vs/c-/v17/.wsuo

14 KB
Binary file not shown.

.vs/c-/v17/DocumentLayout.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"Version": 1,
3+
"WorkspaceRootPath": "C:\\Users\\Administrator\\source\\repos\\sudoevolve\\c-\\",
4+
"Documents": [],
5+
"DocumentGroupContainers": [
6+
{
7+
"Orientation": 0,
8+
"VerticalTabListWidth": 256,
9+
"DocumentGroups": []
10+
}
11+
]
12+
}

.vs/slnx.sqlite

88 KB
Binary file not shown.

multiplication.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#include<iostream>
2+
3+
using namespace std;
4+
5+
int main()
6+
{
7+
for (int i = 1; i <= 9; i++)
8+
{
9+
for (int j = 1; j <= i; j++) {
10+
cout << j << "x" << i << "=" << i * j << "\t";
11+
}
12+
cout << endl;
13+
}
14+
cin.get();
15+
}

0 commit comments

Comments
 (0)