饮料我只喝冰红茶
饮料我只喝冰红茶
全部文章
分类
题解(11)
归档
标签
去牛客网
登录
/
注册
饮料我只喝冰红茶的博客
全部文章
(共29篇)
题解 | #[NOIP2013]记数问题#
#include <stdio.h> int main() { int n = 0; int x = 0; scanf("%d %d", &n, &x); int i = 0; int count = 0; ...
C
2022-08-04
0
251
题解 | #获取字符串长度#
#include <iostream> #include <stdio.h> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); ...
C
2022-08-04
0
336
题解 | #变种水仙花#
#include <stdio.h> int main() { int i = 0; for (i = 10000; i < 100000; i++) {...
2022-08-04
0
244
题解 | #两个整数二进制位不同个数#
int Count(int c) { int i = 0; int count = 0; for (i = 0; i < 32; i++) { if (c & 1 == 1) { count++; } c = c >> 1; } retu...
C
2022-07-29
0
302
题解 | #牛牛的水杯#
#include <stdio.h> int main() { int h, r; scanf("%d %d", &h,&...
C#
2022-07-24
0
241
题解 | #KiKi和酸奶#
#include <stdio.h> int main() { int n, h, m; int a = 0; int b = 0; scanf("%d %...
C#
2022-07-23
0
267
题解 | #统计成绩#
#include <stdio.h> int main() { int n = 0; int i = 0; double arr[100] = {0};//存放成绩 sc...
C#
2022-07-22
0
283
题解 | #kiki算数#
#include <stdio.h> int main() { int a = 0; int b = 0; &...
2022-07-20
0
228
题解 | #字符圣诞树#
#include <stdio.h> int main() { char ch = 0; scanf("%c", &ch); int i = 0; int j = 0; int row = 4; int col...
C
2022-07-20
0
297
题解 | #判断字母#
int main() { char ch = 0; scanf("%c", &ch); if(ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z') ...
C
2022-06-10
0
283
首页
上一页
1
2
3
下一页
末页