冯子优
冯子优
全部文章
题解
归档
标签
去牛客网
登录
/
注册
冯子优的博客
全部文章
/ 题解
(共6篇)
include<bits/stdc++.h> using namespace std;int main () { int n; while (cin >> n) {//多组输入 for (int i = 1;i <= n;i++) {//控制行...
2020-02-09
0
374
include<bits/stdc++.h> using namespace std;int main () { int n; while (cin >> n) {//多组输入 for (int i = 1;i <= n;i++) {//控制行...
2020-02-09
0
438
include<bits/stdc++.h> using namespace std;int main () { int a; while(cin >> a){//多组输入 for(int i=a;i>=1;i--)//翻转直角三角形 ...
2020-02-09
0
393
#include<bits/stdc++.h>//万能头文件
include<bits/stdc++.h>//万能头文件 using namespace std;int main () { int n; while(cin >> n){//多组输入 for(int i = 1; i <= n; i++){...
2020-02-08
0
601
include<bits/stdc++.h>//万能头文件
include<bits/stdc++.h>//万能头文件 using namespace std;int main () { int n; while (cin >> n) {//多组输入 for (int i = 0;i < n;i++) {//控...
2020-02-08
0
924
include<bits/stdc++.h>//万能头文件
include<bits/stdc++.h>//万能头文件 int main(){ int a; int i=0; while(scanf("%d",&a)!=EOF)//多组输入 {for(i=0;i<a;i++){ printf("*");//输出线段图案 } ...
2020-02-08
0
579