主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
mshj
2024年4月11日 17:41
开门人和关门人 题解:
P1333
回复 0
|
赞 0
|
浏览 490
#include<iostream> #include<algorithm> using namespace std; int main() { int n; while (cin >> n) { string n1 = "",n2=""; string t1, t2;  ...
ymw1836828452
2020年4月20日 20:29
稳稳通过
P1333
回复 0
|
赞 0
|
浏览 8.2k
#include <stdio.h> #include <stdlib.h> #include <string.h> struct person {char num[200]; }; int main() {struct person a[15]; int n; scanf("%d",&n); int i; for(i=0;i<n;i++) { scanf("%s",a[i].num);getchar(); } ...
ymw1836828452
2020年4月20日 20:18
P1333题解
P1333
回复 0
|
赞 0
|
浏览 8.7k
#include <stdio.h> #include <stdlib.h> #include <string.h> struct person {char num[20]; char time1[10]; char time2[10]; }; int main() {struct person a[15]; int n; scanf("%d",&n); int i,t=0,k=0; for(i=0;i<n;i++) { scanf(...
题目
开门人和关门人
题解数量
3
发布题解
热门题解
1
开门人和关门人 题解:
2
P1333题解
3
稳稳通过