网站首页 站内搜索

搜索结果

查询Tags标签: 1036,共有 10条记录
  • [PAT乙] 1036 跟奥巴马一起编程 (15 分)

    #include<cstdio> int main(){int n;char c;scanf("%d %c",&n,&c);int col,row;row=n/2;col=n;if(n%2!=0) row+=1;for(int i=0;i<row;i++){if(i==0||i==row-1){for(int j=0;j<col;j++){printf("%c",c);}}else{printf("%c&qu…

    2022/2/14 11:11:39 人评论 次浏览
  • PAT甲级 1036(C++)

    #include<iostream> #include<vector> #include<algorithm> using namespace std; struct stu {string name, id;char s; int grade; }; int N; vector<struct stu>info; bool compare(struct stu s1, struct stu s2) {if (s1.s != s2.s) return …

    2021/10/14 20:16:50 人评论 次浏览
  • PAT甲级 1036(C++)

    #include<iostream> #include<vector> #include<algorithm> using namespace std; struct stu {string name, id;char s; int grade; }; int N; vector<struct stu>info; bool compare(struct stu s1, struct stu s2) {if (s1.s != s2.s) return …

    2021/10/14 20:16:50 人评论 次浏览
  • 1036 跟奥巴马一起编程 (15 分)

    美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014 年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧! 输入格式: 输入在一行中给…

    2021/9/28 20:12:33 人评论 次浏览
  • 1036 跟奥巴马一起编程 (15 分)

    美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014 年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧! 输入格式: 输入在一行中给…

    2021/9/28 20:12:33 人评论 次浏览
  • 查看Nginx是否启动

    查看Nginx进程 ps -ef | grep nginx 输出如下: root 1036 1 0 Jul15 ? 00:00:00 nginx: master process /www/server/nginx/sbin/nginx -c /www/server/nginx/conf/nginx.conf www 1048 1036 0 Jul15 ? 00:00:02 nginx: worker proces…

    2021/8/31 7:06:13 人评论 次浏览
  • 查看Nginx是否启动

    查看Nginx进程 ps -ef | grep nginx 输出如下: root 1036 1 0 Jul15 ? 00:00:00 nginx: master process /www/server/nginx/sbin/nginx -c /www/server/nginx/conf/nginx.conf www 1048 1036 0 Jul15 ? 00:00:02 nginx: worker proces…

    2021/8/31 7:06:13 人评论 次浏览
  • 1036 Boys vs Girls

    题目来源:PAT (Advanced Level) Practice This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Input Specification: Each input file contains one test case. Eac…

    2021/7/9 23:08:39 人评论 次浏览
  • 1036 Boys vs Girls (25 分)

    This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Input Specification: Each input file contains one test case. Each case contains a positive integer N, fo…

    2021/6/19 23:29:06 人评论 次浏览
  • Linux下MySql 1036 错误码解决(1036: Table 'xxxx' is read only)

    我们在进行数据库搬家的时候,经常会遇到(1036: Table 'xxxx' is read only)的问题,字面意思很明确,就是数据库只有读权限,无写权限,那么我们来分享下我的处理办法

    2019/6/30 18:42:01 人评论 次浏览
扫一扫关注最新编程教程