摘要: 洛谷 P1480 A/B Problem(高精除以低精) 题目描述 输入两个整数a,b,输出它们的商(a include using namespace std; int a[10000]; int y, l=0, yushu, shang,f=0; int main() { char c=getc 阅读全文
posted @ 2019-12-10 20:24 orange_lyc 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 刘子闻(神!)讲的高精度【太强了】\ 1.6 10:大整数加法 总时间限制: 1000ms 内存限制: 65536kB 描述 求两个不超过200位的非负整数的和。 输入 有两行,每行是一个不超过200位的非负整数,可能有多余的前导0。 输出 一行,即相加后的结果。结果里不能有多余的前导0,即如果结果 阅读全文
posted @ 2019-12-10 20:11 orange_lyc 阅读(141) 评论(0) 推荐(0) 编辑
摘要: strcmp:C++自带函数 字典序 strcpy:交换顺序 getline: 本质上有两种getline函数,一种在头文件中,是istream类的成员函数。一种在头文件中,是普通函数。 在中的getline函数有两种重载形式: 作用是从istream中读取至多n个字符保存在s对应的数组中。即使还没 阅读全文
posted @ 2019-12-07 11:26 orange_lyc 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1 #include<cstdio> 2 #include<iostream> 3 #include<cstring> 4 using namespace std; 5 char ch, letter[101]; 6 int i=1; 7 int main() 8 { 9 printf("Input 阅读全文
posted @ 2019-12-07 09:44 orange_lyc 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1 #include<cstdio> 2 using namespace std; 3 const int maxn=11; 4 int a[maxn][maxn]; 5 int n, x, y, tot; 6 int main() 7 { 8 scanf("%d", &n); 9 tot = a[ 阅读全文
posted @ 2019-12-07 09:13 orange_lyc 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1 #include<cstdio> 2 #include<cstring> 3 using namespace std; 4 int t; 5 bool a[101]; 6 int main() 7 { 8 memset(a, 1, sizeof(a)); 9 a[1] = false; 10 f 阅读全文
posted @ 2019-12-05 20:18 orange_lyc 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 正常代码不写#define @zdx 平时刷题不写freopen @liuziwen 循环内部不写return 0 @asdfo123 主程序内不写char array @asdfo123 输出时间:printf("Time used=%.2lf\n", (double)clock()/CLOCKS 阅读全文
posted @ 2019-12-03 19:49 orange_lyc 阅读(118) 评论(0) 推荐(0) 编辑
摘要: sprintf 基本用法 输入一段有特点的字符串 #include <cstdio> #include <cstring> using namespace std; int main(){ char a[100]; int pos=0; for(int i=1;i<=10;i++){ pos+=sp 阅读全文
posted @ 2019-11-30 11:20 orange_lyc 阅读(241) 评论(0) 推荐(1) 编辑
摘要: #include<cstdio> #include<cstring> using namespace std; int main() { char str[100]; //用法一:取指定长度的字符串 sscanf("12345", "%4s", str); printf("%s\n", str); 阅读全文
posted @ 2019-11-30 11:16 orange_lyc 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 1 #include<cstdio> 2 using namespace std; 3 int main() 4 { 5 char s[101]; 6 int n = 1, count = 0; 7 gets(s); 8 for(int i = 0; i <= 100; i++) 9 { 10 if 阅读全文
posted @ 2019-11-30 10:42 orange_lyc 阅读(393) 评论(0) 推荐(0) 编辑