我想起我叫保罗乔治
我想起我叫保罗乔治
全部文章
分类
归档
标签
去牛客网
登录
/
注册
我想起我叫保罗乔治的博客
全部文章
(共4篇)
题解 | #公务员面试#
#include <stdio.h>int main() { int i,j; int a[100]; double sum=...
2022-12-04
0
275
题解 | #杨辉三角#
#include <stdio.h>int main() { int n,i,j; int a[100][100]; &nb...
2022-11-30
0
234
题解 | #矩阵相等判定#
#include <stdio.h>int main() { int a[100][100],b[100][100]; int n,m,i,j;&...
2022-11-30
0
216
题解 | #反斜线形图案#
#include <stdio.h>int main() {int i,j,n; while(~scanf("%d",&n)) { for(i=0;i<n;i++) { for(j=0;j<n;j++) if(i==j)...
2022-11-28
1
246