牛客263号
牛客263号
全部文章
分类
题解(44)
归档
标签
去牛客网
登录
/
注册
牛客263号的博客
全部文章
(共65篇)
题解 | #编写函数实现两数交换(引用方式)#
#include <iostream> using namespace std; // write your code here...... int a(int& m,int& n){ int temp = m; m = n; n = temp;...
C++
2022-06-24
0
253
题解 | #函数实现计算一个数的阶乘#
#include <iostream> using namespace std; long long factorial(int n); int main() { int n; cin >> n; cout << factorial...
C++
2022-06-24
8
321
题解 | #牛牛的绩点#
gl = {"A":4.0, "B":3.0, "C":2.0, "D":1.0, "F":0} al = [] bl = [] while True: g = input() if g == "False": break else: sco ...
Python3
2022-06-23
40
1105
题解 | #使用字符函数统计字符串中各类型字符的个数#
可以使用C++ string 内置函数实现 #include <iostream> #include <string> using namespace std; int main() { string str; getline(cin, str); ...
C++
2022-06-23
2
350
题解 | #比较字符串大小#
#include <iostream> using namespace std; int mystrcmp(const char* src, const char* dst); int main() { char s1[100] = { 0 }; char s2[1...
C++
2022-06-23
0
252
题解 | #数组元素处理#
#include <iostream> using namespace std; void func(int* p, int n); int main() { int arr[6] = { 0 }; for (int i = 0; i < 6; i++...
C++
2022-06-23
0
185
题解 | #创建动态数组#
#include <iostream> using namespace std; int main() { int n; cin >> n; // write your code here...... int *a = new i...
C++
2022-06-23
0
238
题解 | #复制部分字符串#
#include <iostream> #include <string> using namespace std; int main() { char str[30] = { 0 }; cin.getline(str, sizeof(str)); ...
C++
2022-06-22
0
0
题解 | #获取字符串长度#
#include <iostream> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); // write your code he...
C++
2022-06-22
0
232
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... string fan(string s){ string news = ""; for (int i=s.length()...
C++
2022-06-22
0
295
首页
上一页
1
2
3
4
5
6
7
下一页
末页