旺仔烧麦
旺仔烧麦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
旺仔烧麦的博客
TA的专栏
46篇文章
0人订阅
C/C++题解
46篇文章
26人学习
全部文章
(共67篇)
题解 | 定义变量
来自专栏
#include <iostream> using namespace std; extern int a; extern char b; extern long c; extern double d; int main() { // write your code her...
2026-01-06
0
16
题解 | 牛牛的平面向量
来自专栏
#include <stdio.h> #include <stdlib.h> // write your code here...... int main() { int n; scanf("%d",&n); int...
2026-01-05
0
16
题解 | 牛牛的书
来自专栏
#include <stdio.h> #include <string.h> #include <stdlib.h> // write your code here...... struct Books{ char** BooksName; in...
2026-01-05
0
16
题解 | KiKi定义电子日历类
来自专栏
#include <stdio.h> // write your code here...... struct dates{ int year; int mouth; int day; }date = {0, 0, 0}; void out_date(int ...
2026-01-05
0
11
题解 | 牛牛的排序
来自专栏
#include <stdio.h> #include <stdlib.h> // write your code here...... void mysort(int* arr,int n){ int temp = 0; for(int i=0; i<...
2026-01-05
0
11
题解 | 复制部分字符串
来自专栏
#include <stdio.h> void cpy(char* strcpy,char* str, int x){ int i = 0; str = str+x; while(*str != '\0'){ strcpy[i] = *str; ...
2026-01-04
0
12
题解 | 获取字符串长度
来自专栏
#include <stdio.h> int main() { int x = 0; char str[100] = {0}; scanf("%[^\n]", str); char * string = str; while...
2026-01-04
0
20
首页
上一页
1
2
3
4
5
6
7
下一页
末页