上一页 1 ··· 8 9 10 11 12
摘要: #include <iostream> using namespace std; int main() { //输出 cout //输出运算符 << //换行 endl cout<<" ***** "<<endl; cout<<" ******* "<<endl; cout<<"*********" 阅读全文
posted @ 2024-10-23 15:01 行胜于言Ibl 阅读(22) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { //输出 cout //输出运算符 << //换行 endl cout<<" * "<<endl; cout<<" *** "<<endl; cout<<"*****"<<endl; retu 阅读全文
posted @ 2024-10-23 14:59 行胜于言Ibl 阅读(43) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ //输出 cout //输出运算符 << //换行 endl cout<<"*****"<<endl; cout<<"*"<<endl; cout<<"*****"<<endl; cout<<"* 阅读全文
posted @ 2024-10-23 14:57 行胜于言Ibl 阅读(86) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define ll long long using namespace std; int main() { string a; while(cin>>a){ //cin输入会有返回 char c = a[0]; //取出第一个字符 if(c>'Z') 阅读全文
posted @ 2024-10-22 19:54 行胜于言Ibl 阅读(60) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12