C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { int year,month,day,days; }d1; int main(){ scanf("%d…… 题解列表 2017年10月22日 0 点赞 0 评论 596 浏览 评分:0.0
无聊的星期六 摘要:#include <stdio.h> typedef struct days { int year; int month; int day; }days; …… 题解列表 2024年08月17日 0 点赞 0 评论 127 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;}aa;void main(){ int a[12]…… 题解列表 2019年02月18日 0 点赞 0 评论 261 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct str { int year; int mon; int day; }s; int main() { int m; scanf("%d%d…… 题解列表 2020年06月30日 0 点赞 0 评论 338 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:好像没什么问题,但是运行还是有百分之五十不通过,望各位大佬指点。注意事项:参考代码:year,month,day = map(int,input().split())sum = 0if (y…… 题解列表 2022年05月22日 0 点赞 0 评论 72 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() {struct Date {int year; int month; …… 题解列表 2019年05月03日 0 点赞 0 评论 320 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2018年07月09日 0 点赞 0 评论 483 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include using namespace std; struct time{ int year; int month; int …… 题解列表 2020年08月15日 0 点赞 0 评论 184 浏览 评分:0.0
【c语言】结构体之时间设计 摘要:参考代码:#include<stdio.h>int main(){ int a,b,c; struct ymd{ int a; int b; int c; }y; scanf("%d%d%d"…… 题解列表 2022年07月21日 0 点赞 0 评论 211 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct Date { int year; int month; int day; }s; scanf…… 题解列表 2024年04月05日 0 点赞 0 评论 108 浏览 评分:0.0