每日打卡
//#include<iostream>
//using namespace std;
//int main()
//{
// long long int A, B, C; int D;
// cin >> A >> B >> D;
// C = A + B;
// int n = 0;
// long long m = C;
// while (m != 0)
// {
// n++;
// m /= D;
// }
// int* a = new int[n];
// for (int i = n-1; i >=0; i--)
// {
// a[i] = C % D;
// C /= D;
// }
// for (int j = 0; j < n; j++)
// {
// cout << a[j];;
// }
// return 0;
//}
//#include<stdio.h>
//int main() {
// int c1, c2;
// scanf_s("%d %d", &c1, &c2);
// int time = (c2 - c1 + 50) / 100;
// int h, m, s;
// s = time % 60;
// h = time / 3600;
// m = (time - 3600 * h) / 60;
// printf("%02d:%02d:%02d", h, m, s);
// return 0;
//}
//#include <iostream>
//#include <string>
//using namespace std;
//
//struct Stu {
// int testid;
// string id;
//}student[1000]; //下标表示考生的试机座位号
//
//int main()
//{
// int n;
// cin >> n;
// for (int i = 0; i < n; i++)
// {
// string t1;
// int t2, t3;
// cin >> t1 >> t2 >> t3;
// student[t2].id = t1;
// student[t2].testid = t3;
// }
//
// cin >> n;
// for (int i = 0; i < n; i++)
// {
// int t;
// cin >> t;
// cout << student[t].id << " " << student[t].testid << endl;
// }
//
//return 0
//}
本文来自博客园,作者:赵千万,转载请注明原文链接:https://www.cnblogs.com/zhaoqianwan/p/17324004.html
千万千万赵千万