TWtong


私信TA

用户名:dotcpp0626266

访问量:1736

签 名:

等  级
排  名 12712
经  验 959
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <stdio.h>


int main()


{

int a;

scanf("%d",&a);

if(a/10==0){

printf("0");}

else{

printf("1");

}

    return 0;


}


 

0.0分

3 人评分

  评论区

输入100以上的数打印还是1啊
2023-04-02 22:49:51
#include<iostream>
using namespace std;

int main() {
	int n;
	cin >> n;
	if ((n/10>0)&&(n/10<10)) {
		cout << "1" << endl;
	}
	else {
		cout << "0" << endl;
	}
	return 0;
}
2023-02-16 22:13:51
  • «
  • 1
  • »