輸出整數各位數字
阿新 • • 發佈:2021-01-14
技術標籤:江西理工大學OJ題解c++
星圖
題目來源:江西理工大學OJ
題目地址:http://oj.jxust.edu.cn/problems/1216
題目描述
編寫一個函式,輸出如圖8-6圖形
輸入
輸出
樣例輸入
樣例輸出
這個題目教我們如何輸出。。
上程式碼!!
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout << " *" << endl;
cout << " * * *" << endl;
cout << " * * * * *" << endl;
cout << " * * * * * * *" << endl;
cout << " * * * * * * * * *" << endl;
cout << " * * * * * * * * * * *" << endl;
cout << " * * * * * * * * *" << endl;
cout << " * * * * * * *" << endl;
cout << " * * * * *" << endl;
cout << " * * *" << endl;
cout << " *" << endl;
return 0;//貌似有些大佬有別的辦法,但是我用的是最笨的辦法
}
知識點總結:
- 輸出流
好了,每篇題解後面都附上一句話。
我都可以 我不著急 我都隨你 你覺得什麼時候愛我合適 那我就等你。