爱交友的马后炮炮手在创作
爱交友的马后炮炮手在创作
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱交友的马后炮炮手在创作的博客
全部文章
(共28篇)
题解 | #八进制#
#include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF){ int temp=n;int len=0; int a[10000000];...
2024-03-03
0
173
题解 | #阶乘#
#include <stdio.h> int jiecheng(int t){ int temp=1;; for(int i=1;i<=t;i++){ temp*=i; } return temp; } int main() { ...
2024-03-03
0
174
题解 | #找位置#
#include <stdio.h> #include <string.h> int main() { char a[101]; while (scanf("%s", a) != EOF) { int l...
2024-03-03
0
205
题解 | #回文字符串#
#include <stdio.h> #include <string.h> int main() { char a[2000]; while (scanf("%s ", a) != EOF) { int i=strlen(...
2024-03-03
0
186
题解 | #a+b#
#include <stdio.h> int main() { long long a, b; while (scanf("%lld %lld", &a, &b) != EOF) { long long c=a+b;...
2024-03-03
0
181
题解 | #N阶楼梯上楼问题#
#include <stdio.h> typedef struct stack{ int num; }stack ; int main() { int n; while (scanf("%d ", &n) != EOF) { ...
2024-03-03
0
167
题解 | #大整数排序#
#include <stdio.h> #include <string.h> int comp(char a[100],char b[100]){ int i=strlen(a),j=strlen(b); if(i>j)return 1; els...
2024-03-03
0
158
题解 | #二叉排序树#
#include <stdio.h> #include<stdlib.h> typedef struct tree{ int value; struct tree*lnode; struct tree*rnode; }tree,*root ; void...
2024-03-03
0
164
题解 | #打印日期#
#include <stdio.h> void inttostring(int temp,char a[2]){ int t1=temp/10; int t2=temp%10; char a0='0'; a[0]=(char)(t1+(int)a0); ...
2024-03-03
0
157
题解 | #A+B#
#include <stdio.h> #include<string.h> int main() { char temp; char a[100][20]={0}; int len=0,j=0; while(scanf("%c&quo...
2024-03-03
0
187
首页
上一页
1
2
3
下一页
末页