Spiker
Spiker
全部文章
题解
未归档(2)
读书笔记(3)
归档
标签
去牛客网
登录
/
注册
Spiker的博客
全部文章
/ 题解
(共28篇)
A1001 A+B Format
#include<cstdio> #include<cstring> int num[10]; int main(){ int a,b; scanf("%d %d",&a,&b); int sum = a+b; if(...
2021-04-24
0
569
B1048 数字加密
注意点:这题不能用gets(会把空格吃掉); #include<cstdio> #include<cstring> void reverse(char s[]){ int len = strlen(s); for(int i=0;i<len/2;i++...
2021-04-24
0
511
B1014 福尔摩斯的约会
#include<cstdio> #include<cstring> int main(){ char week[7][5]{ "MON","TUE","WED","THU","FRI","SAT","SUN" }; ...
2021-04-24
0
511
B1009 说反话
#include<cstdio> #include<cstring> //注意,这题并不是要求把字符串反转,而是要求将单词反转; //利用二维数组存储各个单词,然后反向输出; int main(){ char str[90]; char ans[...
2021-04-22
0
512
A1027 Colors in Mars
麻烦的方法一:直接套取余除基的模板,然后输出 #include<cstdio> #include<cstring> //直接用进制转换的写法要注意,补0,因为输出要求为6位; //用一个字符数组来转换大于9的数 char redix[13] = {'0','1','2...
2021-04-22
0
650
A1019 General Palindromic Number
#include<cstdio> #include<cstring> //判断是否是回文数 利用函数写,不然很麻烦 bool Judge(int a[],int num){ //判断是不是回文数 for(int i=0;i<=num/2;i++){ ...
2021-04-22
0
466
B1037 在霍格沃茨找零钱
#include<cstdio> #include<cstring> //类似于算时间之差(全部变成秒,再相减,然后转换为几个小时几分钟几秒的格式) // //这题全部转换为knut,知道1 gallon=17*29 knut,1 Sickle = 29 Knut co...
2021-04-22
0
523
A1031 Hello World for U
#include<cstdio> #include<cstring> //方法一:直接输出 int main(){ char str[100]; gets(str); int N = strlen(str); int n1,n2,n...
2021-04-21
0
493
B1036 跟奥巴马一起编程
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; int main(){ int col,row; char c; scanf("...
2021-04-13
0
442
A1036 Boys vs Girls
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; struct student{ char name[12]; //姓名 char i...
2021-04-13
0
484
首页
上一页
1
2
3
下一页
末页