牛客339702048号
牛客339702048号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客339702048号的博客
全部文章
(共35篇)
题解 | #[NOIP2010]数字统计#
#include <stdio.h> int main() { int a, b; int count=0; while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 ...
2023-07-26
0
207
题解 | #比较长方形的面积大小#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
2023-07-06
0
230
题解 | #创建二维动态数组#
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; // write your code here...... // //一维数组代替二维数组写法 ...
2023-06-19
0
265
题解 | #结构体简单使用#
#include <iostream> #include <string> using namespace std; struct student { // write your code here...... string name; int ag...
2023-06-18
0
136
题解 | #字符串拼接#
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin...
2023-06-18
0
148
题解 | #KiKi定义电子日历类#
#include <iostream> #include <string> using namespace std; //声明类 class Date{ //共有成员函数 public: void ShowDate(int y,int m,in...
2023-06-16
0
188
题解 | #牛牛的新数组求和#
#include <stdio.h> int cal(int *array,int n){ int sum=0; for(int i=0;i<n;i++){ sum+=*array; array++; } r...
2023-06-15
0
188
题解 | #利用指针遍历数组#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int* ptr = arr; int len = sizeof(arr) / sizeof(int); ...
2023-06-14
0
163
题解 | #牛牛的短信#
#include <stdio.h> int main() { int n; scanf("%d",&n); float menoy=0; float sum=0; int number; while(scanf("%d",&number...
2023-06-08
0
188
题解 | #小乐乐计算函数#
#include <stdio.h> int max3(int a,int b,int c); int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); float m=1.0*max3(a+b,b,c)/(max3(a,b...
2023-06-08
1
201
首页
上一页
1
2
3
4
下一页
末页