2009: 第一个带类的C++程序 摘要:解题思路:本题输入的不是3个整数而是字符串,所以难点在于如何高效的把字符串转成数字。我的想法是把输入的读入一个char数组,遍历此数组,遇到'-'就切换,遇到数字就加到另一个存放日期数…… 题解列表 2022年03月01日 0 点赞 0 评论 282 浏览 评分:9.9
第一个带类的C++程序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d:%d:%…… 题解列表 2020年09月06日 0 点赞 0 评论 367 浏览 评分:4.7
第一个带类的C++程序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,t=""; cin>>s; …… 题解列表 2023年05月12日 0 点赞 0 评论 69 浏览 评分:0.0
第一个带类的程序题解(Python代码) 摘要:class Date(object): def __init__(self,time): self.__year=0 self.__month=0 se…… 题解列表 2023年12月07日 0 点赞 0 评论 58 浏览 评分:0.0
学习s.toCharArray()和new String(chars) 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String args[]) …… 题解列表 2024年10月08日 0 点赞 0 评论 74 浏览 评分:0.0
2009: 第一个带类的C++程序 摘要:C++ 类的简单运用。#include <bits/stdc++.h> using namespace std; class time{ private: int …… 题解列表 2022年03月10日 0 点赞 0 评论 161 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; class Date { private String year,month,day; pub…… 题解列表 2024年12月04日 0 点赞 0 评论 151 浏览 评分:0.0
2009: 第一个带类的C++程序 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; class Data { public: void Set(string…… 题解列表 2023年10月22日 0 点赞 0 评论 59 浏览 评分:0.0
题目2009:第一个带类的程序(带set函数) 摘要:```import java.util.Scanner;public class Main { public static void main(String[] args) { M…… 题解列表 2023年11月25日 0 点赞 0 评论 150 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:class Date: def __init__(self): self.__year = 0 self.__mon…… 题解列表 2024年12月04日 0 点赞 0 评论 61 浏览 评分:0.0