主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
snake
2023年11月11日 16:08
计算函数 题解:
P1037
回复 0
|
赞 0
|
浏览 686
#include "stdio.h" int main() { int x,y; scanf("%d",&x); if(x <1) { y=x; printf("%d",y); } else if(x <10) { y=2*x-1; printf("%d",y); } else { y=3*x-11; printf("%d",y); } return 0; }
Hegel
2023年3月28日 19:25
计算函数
P1037
回复 0
|
赞 0
|
浏览 1.5k
#include <iostream> using namespace std; int Fun(int x){ if(x<1) return x; if(x>=1&&x<10) return 2*x-1; if(x>=10) return 3*x-11; } int main() { int n; while(cin>>n) cout<<Fun(n)<<endl; return 0; }
A1120161820
2020年3月25日 10:40
计算函数(c++)
P1037
回复 0
|
赞 0
|
浏览 9.4k
#include<iostream> using namespace std; int main() { int x; cin >> x; if (x < 1) cout << x << endl; else if (x >= 10) cout << 3*x - 11 << endl; else cout << 2*x - 1 << endl; return 0; }
hectorwill
2020年3月22日 16:56
三元表达式
P1037
回复 0
|
赞 0
|
浏览 9.0k
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x; cout<<(x<1?x:(x>=10?3*x-11:2*x-1)); return 0; } 注意cout<<后面的括号。
题目
计算函数
题解数量
4
发布题解
热门题解
1
三元表达式
2
计算函数
3
计算函数(c++)
4
计算函数 题解: