2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<=99){ …… 题解列表 2022年10月16日 0 点赞 0 评论 487 浏览 评分:9.2
判断是否为两位数(两种做法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; gets(a); int m…… 题解列表 2022年12月25日 0 点赞 0 评论 307 浏览 评分:9.9
2783:判断是否为两位数 摘要:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<=99) printf("1"); …… 题解列表 2023年08月27日 0 点赞 0 评论 568 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年01月05日 0 点赞 0 评论 137 浏览 评分:9.9
繁花似锦分身乏术列今年初发的风格的放过他过分 摘要:解题思路:无注意事项:无参考代码:g=input()g=int(g)if g>=10 and g<=99: print("1")else: print("0")…… 题解列表 2024年07月16日 0 点赞 0 评论 104 浏览 评分:9.9
有错误请指出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a;scanf("%d",&a);if(a/10==0){ printf("0");}else{ pri…… 题解列表 2022年12月18日 0 点赞 2 评论 608 浏览 评分:9.9
判断是否为两位数之入门 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) print("1") if 0.1<= n/100 <1 else pr…… 题解列表 2024年10月26日 0 点赞 0 评论 134 浏览 评分:9.9
2783-判断是否为两位数 字符串转数组长度的处理 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月26日 0 点赞 0 评论 136 浏览 评分:9.9
答案之中的答案 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; if((a>9) an…… 题解列表 2023年11月27日 0 点赞 0 评论 228 浏览 评分:9.9
Ikaros-判断是否为两位数 C++解决 摘要:解题思路:输入字符串,然后用strlen计算长度,比较即可参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a; char…… 题解列表 2022年12月14日 0 点赞 0 评论 417 浏览 评分:9.9