[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{int year;int month;int day;}s;int main(){int t=0; scanf(…… 题解列表 2019年05月05日 0 点赞 0 评论 1252 浏览 评分:0.0
C语言训练-委派任务* (C语言代码) 摘要:解题思路:好奇怪的题目注意事项:参考代码:#include<stdio.h>int main(){ printf("A,B,C,F,\n"); return 0;}…… 题解列表 2019年05月05日 0 点赞 0 评论 673 浏览 评分:2.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ char a[60]; int l,i=…… 题解列表 2019年05月05日 0 点赞 0 评论 460 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[6][6],n,i,j,max,k,l; scanf("%d",&n); for(i=0;i<n;i…… 题解列表 2019年05月05日 0 点赞 0 评论 826 浏览 评分:0.0
程序员的表白 (C语言代码) 摘要:解题思路:注意事项: U之间要空一行。参考代码:#include<stdio.h>void star(int n){ int i,j; for(i = 0;i < n;i++) { putc…… 题解列表 2019年05月05日 0 点赞 0 评论 1136 浏览 评分:8.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:注意看题目输出要求,c的的值都是间隔5的,所以c=c+5参考代码:#include<stdio.h>int ctof(int c){ int f; f=32+c*9/5; retu…… 题解列表 2019年05月05日 0 点赞 0 评论 610 浏览 评分:0.0
[编程入门]实数的打印 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float s; int i,j; scanf("%f",&s); for(i=1;i<=3;i++) { f…… 题解列表 2019年05月05日 0 点赞 0 评论 1168 浏览 评分:9.9
P1019 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[10050],b[10050];…… 题解列表 2019年05月05日 0 点赞 0 评论 840 浏览 评分:0.0
[编程入门]宏定义之闰年判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define LEAP_YEAR(y) ((y%4==0)&&(y%100!=0)||(y%400==0))int main(){ i…… 题解列表 2019年05月05日 0 点赞 0 评论 522 浏览 评分:0.0
P1018 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[100],cnt=0,n,m; long long sum=1; scanf("…… 题解列表 2019年05月05日 0 点赞 0 评论 1194 浏览 评分:0.0