欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2

程序员文章站 2022-05-15 20:51:15
...

1

#include <iostream>
int main (){

cout<<"三角形没有考虑边长大于等于零。很烦,自以为输入的数据会是正整数";

cout<<"int a[xxx]";
cout<<"之后又 int a;然后出错,各种变量的名字不能搞混"return 0}

2
2
不知道为什么报错
经典int 面

# include <iostream>
# include <stdio.h>

using namespace std;
int a, ans = 1;

int main () {
	scanf ("%d", &a);
	while (a > 1) {
		ans++; 
		a /= 2;
	}
	cout << ans << endl;
	return 0;
}

但是这就可以,感觉思路一样啊

上一篇: 2

下一篇: 2